From a1a0e078708b546f8365ea86b70cfd94bfcce341 Mon Sep 17 00:00:00 2001 From: Petr Vecera Date: Fri, 1 Mar 2024 10:10:39 +0100 Subject: [PATCH] Add tests and refactor --- .github/workflows/tests.yaml | 6 + .gitignore | 2 + README.md | 8 +- src-tauri/src/config.rs | 6 + src-tauri/src/lib.rs | 1 + src-tauri/src/main.rs | 33 +- src-tauri/src/overlay_server.rs | 55 +- src-tauri/src/parse_log_file.rs | 31 +- src-tauri/src/parse_log_file/tests.rs | 45 + src-tauri/test_assets/warnings-1.log | 7323 +++++++++++++++++++++++++ src-tauri/test_assets/warnings-2.log | 3555 ++++++++++++ src-tauri/test_assets/warnings-3.log | 1383 +++++ 12 files changed, 12381 insertions(+), 67 deletions(-) create mode 100644 src-tauri/src/config.rs create mode 100644 src-tauri/src/parse_log_file/tests.rs create mode 100644 src-tauri/test_assets/warnings-1.log create mode 100644 src-tauri/test_assets/warnings-2.log create mode 100644 src-tauri/test_assets/warnings-3.log diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index b755905..c826a58 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -76,6 +76,12 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} TAURI_PRIVATE_KEY: ${{ secrets.TAURI_PRIVATE_KEY }} TAURI_KEY_PASSWORD: ${{ secrets.TAURI_KEY_PASSWORD }} + + - name: Run Rust tests + run: | + cd src-tauri + cargo test --package coh3-stats-desktop-app --lib + - name: Upload Tauri app artifacts uses: actions/upload-artifact@v3 with: diff --git a/.gitignore b/.gitignore index 0cbc2a6..007f8f2 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,8 @@ yarn-error.log* pnpm-debug.log* lerna-debug.log* +!src-tauri/test_assets/**.log + node_modules dist dist-ssr diff --git a/README.md b/README.md index 9df56c9..c15bdfa 100644 --- a/README.md +++ b/README.md @@ -157,13 +157,15 @@ To build the app and an installer run: yarn tauri build ``` +Running tests: +``` +cargo test --package coh3-stats-desktop-app --lib +``` + The build output can be found in `src-tauri/target/release`. The installer can be found in `src-tauri/target/release/bundle/msi`. Don't forget to run prettier with `yarn fix`. -On MacOS you need to comment out this line in main.rs around line 57 -```.plugin(tauri_plugin_window_state::Builder::default().build())``` - ### Release - Increase the version in files: - `package.json` diff --git a/src-tauri/src/config.rs b/src-tauri/src/config.rs new file mode 100644 index 0000000..827f764 --- /dev/null +++ b/src-tauri/src/config.rs @@ -0,0 +1,6 @@ +// Streamer overlay local PORT +pub const OVERLAY_PORT:&str = "47824"; + +// COHDB Auth +pub const COHDB_CLIENT_ID:&str = "kHERjpU_rXcvgvLgwPir0w3bqcgETLOH-p95-PVxN-M"; +pub const COHDB_REDIRECT_URI:&str = "coh3stats://cohdb.com/oauth/authorize"; \ No newline at end of file diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs index 0f7a2c8..8078b11 100644 --- a/src-tauri/src/lib.rs +++ b/src-tauri/src/lib.rs @@ -2,3 +2,4 @@ pub mod parse_log_file; pub mod plugins; pub mod overlay_server; pub mod dp_utils; +pub mod config; \ No newline at end of file diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index 2979a6c..05cd7ae 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -5,8 +5,9 @@ extern crate machine_uid; +use coh3_stats_desktop_app::config::{COHDB_CLIENT_ID, COHDB_REDIRECT_URI}; use coh3_stats_desktop_app::dp_utils::load_from_store; -use coh3_stats_desktop_app::{parse_log_file, plugins::cohdb, overlay_server::run_http_server}; +use coh3_stats_desktop_app::{overlay_server::run_http_server, parse_log_file, plugins::cohdb}; use log::{error, info}; use std::path::Path; use std::thread; @@ -24,12 +25,15 @@ fn main() { tauri_plugin_deep_link::prepare("com.coh3stats.desktop"); // Add monitoring using sentry + // Monitoring is disabled on MacOS because we do only development on MacOS + // if you want to recieve sentry events on MacOS, remove the cfg attribute + #[cfg(not(target_os = "macos"))] let _guard = sentry::init(("https://5a9a5418c06b995fe1c6221c83451612@o4504995920543744.ingest.sentry.io/4506676182646784", sentry::ClientOptions { release: sentry::release_name!(), ..Default::default() })); - tauri::Builder::default() + let builder = tauri::Builder::default() .invoke_handler(tauri::generate_handler![ default_log_file_path, default_playback_path, @@ -56,32 +60,37 @@ fn main() { })) .plugin(tauri_plugin_fs_watch::init()) // You need to comment out this line to run the app on MacOS - .plugin(tauri_plugin_window_state::Builder::default().build()) + // do not compile on mac .plugin(tauri_plugin_store::Builder::default().build()) .plugin(cohdb::auth::init( - "kHERjpU_rXcvgvLgwPir0w3bqcgETLOH-p95-PVxN-M".to_string(), - "coh3stats://cohdb.com/oauth/authorize".to_string(), + COHDB_CLIENT_ID.to_string(), + COHDB_REDIRECT_URI.to_string(), )) - .plugin(coh3_stats_desktop_app::plugins::cohdb::sync::init()) + .plugin(coh3_stats_desktop_app::plugins::cohdb::sync::init()); + + #[cfg(not(target_os = "macos"))] + let builder = builder.plugin(tauri_plugin_window_state::Builder::default().build()); + + builder .setup(setup) .run(tauri::generate_context!()) .expect("error while running tauri application"); - } fn setup(app: &mut tauri::App) -> Result<(), Box> { let handle = app.handle(); - if load_from_store(handle.clone(), "streamerOverlayEnabled").unwrap_or(false) { + if load_from_store(handle.clone(), "streamerOverlayEnabled").unwrap_or(false) { info!("Streamer overlay server is enabled"); - let mut file_path = handle.path_resolver().app_data_dir().unwrap(); + let mut file_path = handle.path_resolver().app_data_dir().unwrap(); file_path.push("streamerOverlay.html"); info!("Expecting the streamerOverlay at {:?}", file_path); - let _handle = thread::spawn(|| { + let _handle = thread::spawn(|| { run_http_server(file_path); - }); - } else { + }); + + } else { info!("Streamer overlay server is disabled"); } diff --git a/src-tauri/src/overlay_server.rs b/src-tauri/src/overlay_server.rs index ebbcb69..74a11a0 100644 --- a/src-tauri/src/overlay_server.rs +++ b/src-tauri/src/overlay_server.rs @@ -1,37 +1,34 @@ -use std::fs::File; -use std::panic; use log::{error, info}; +use std::fs::File; use std::path::PathBuf; -use tiny_http::{Server, Response, StatusCode}; - -pub fn run_http_server(streamer_overlay_path: PathBuf) { - - let result = panic::catch_unwind(|| { +use tiny_http::{Response, Server, StatusCode}; - // Ideally we would allow setting up port in the settings - info!("Starting streamer overlay server on port 47824"); - let server = Server::http("127.0.0.1:47824").unwrap(); +use crate::config::OVERLAY_PORT; - for request in server.incoming_requests() { - - let file = match File::open(&streamer_overlay_path) { - Ok(file) => file, - Err(_) => { - let response = Response::new_empty(StatusCode(404)); - let _ = request.respond(response); - continue; - } - }; - - let response = Response::from_file(file); - let _ = request.respond(response); - } - - }); +pub fn run_http_server(streamer_overlay_path: PathBuf) { + // Ideally we would allow setting up port in the settings + info!("Starting streamer overlay server on port {}", OVERLAY_PORT); - if let Err(err) = result { + let server = match Server::http(format!("127.0.0.1:{}", OVERLAY_PORT)) { + Ok(server) => server, + Err(err) => { error!("Couldn't start the streamer overlay server: {:?}", err); - } - + return; + } + }; + + for request in server.incoming_requests() { + let file = match File::open(&streamer_overlay_path) { + Ok(file) => file, + Err(_) => { + let response = Response::new_empty(StatusCode(404)); + let _ = request.respond(response); + continue; + } + }; + + let response = Response::from_file(file); + let _ = request.respond(response); + } } diff --git a/src-tauri/src/parse_log_file.rs b/src-tauri/src/parse_log_file.rs index 61231e5..db3dadb 100644 --- a/src-tauri/src/parse_log_file.rs +++ b/src-tauri/src/parse_log_file.rs @@ -2,8 +2,10 @@ use log::info; use rev_lines::RawRevLines; use serde::{Deserialize, Serialize}; use std::fs::File; +#[cfg(test)] +mod tests; -#[derive(Serialize, Deserialize, Clone)] +#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, Eq)] pub enum GameState { Closed, Menu, @@ -11,21 +13,21 @@ pub enum GameState { InGame, } -#[derive(Serialize, Deserialize, Clone)] +#[derive(Serialize, Deserialize, Clone, Debug)] pub enum GameType { Classic, AI, Custom, } -#[derive(Serialize, Deserialize, Clone, PartialEq)] +#[derive(Serialize, Deserialize, Clone, PartialEq, Debug)] pub enum TeamSide { Axis, Allies, Mixed, } -#[derive(Serialize, Deserialize, Clone)] +#[derive(Serialize, Deserialize, Clone, Debug)] pub struct PlayerData { pub ai: bool, pub faction: String, @@ -36,13 +38,13 @@ pub struct PlayerData { pub rank: i64, } -#[derive(Serialize, Deserialize, Clone)] +#[derive(Serialize, Deserialize, Clone, Debug)] pub struct TeamData { pub players: Vec, pub side: TeamSide, } -#[derive(Serialize, Deserialize, Clone)] +#[derive(Serialize, Deserialize, Clone, Debug)] pub struct LogFileData { pub game_state: GameState, pub game_type: GameType, @@ -446,20 +448,3 @@ fn get_without_leading_space(line: &str) -> nom::IResult<&str, ()> { }; Ok(("without_space", ())) }*/ - -#[cfg(test)] -mod tests { - use super::parse_log_file_reverse; - - #[test] - fn test_parse_log_file_reverse() { - println!("{}", file!()); - parse_log_file_reverse("tests/warnings.log".to_string()); - } - - #[test] - fn test_parse_log_file_reverse_big_file() { - println!("{}", file!()); - parse_log_file_reverse("tests/warnings-2mb.log".to_string()); - } -} diff --git a/src-tauri/src/parse_log_file/tests.rs b/src-tauri/src/parse_log_file/tests.rs new file mode 100644 index 0000000..d81d41f --- /dev/null +++ b/src-tauri/src/parse_log_file/tests.rs @@ -0,0 +1,45 @@ +use crate::parse_log_file::{parse_log_file_reverse, GameState}; + + +// TODO: Add more assertions and tests for parsing the log files + +#[test] +fn test_parse_log_file_reverse_file_1() { + // println!("{}", file!()); + let result = parse_log_file_reverse("./test_assets/warnings-1.log".to_string()); + assert_eq!(result.game_state, GameState::Closed); + // can't compare for some reason + // assert_eq!(result.game_type, GameType::Custom); + + assert_eq!(result.duration, 2217); + assert_eq!(result.map, "winter_line_8p_mkii"); + assert_eq!(result.win_condition, "VictoryPoint"); + + // assert some results + // assert_eq!(result.len(), 3); + // print!("{:#?}", result); +} + +#[test] +fn test_parse_log_file_reverse_file_2() { + println!("{}", file!()); + let result = parse_log_file_reverse("./test_assets/warnings-2.log".to_string()); + assert_eq!(result.game_state, GameState::Closed); + + // TODO: add more assertions + + // print!("{:#?}", result); +} + +#[test] +fn test_parse_log_file_reverse_file_3() { + println!("{}", file!()); + let result = parse_log_file_reverse("./test_assets/warnings-3.log".to_string()); + assert_eq!(result.game_state, GameState::Closed); + + assert_eq!(result.map, "desert_village_2p_mkiii"); + // TODO: add more assertions + + + // print!("{:#?}", result); +} diff --git a/src-tauri/test_assets/warnings-1.log b/src-tauri/test_assets/warnings-1.log new file mode 100644 index 0000000..62a5b6c --- /dev/null +++ b/src-tauri/test_assets/warnings-1.log @@ -0,0 +1,7323 @@ +RelicCoH3 started at 2023-04-03 12:21 [Mitteleuropäische Sommerzeit UTC 01:00] +OS Win 10.0.19044, 32649MB Physical Memory, 19261 Physical Available, 40073 Virtual Total, 20157 Virtual Available, 7424 Page file. +RUN-OPTIONS [-crash_on_initlist_failure] +WORKING-DIR [I:\steam\steamapps\common\Company of Heroes 3\] +USER [Wolfsindis] +COMPUTER [DESKTOP-152GFHD] +LOCALE [de-DE] + +(I) [12:21:17.037] [000022800]: Version.cpp - translation info queried modulefilename I:\steam\steamapps\common\Company of Heroes 3\RelicCoH3.exe, len 1604 +(I) [12:21:17.037] [000022800]: Version [1.1.1.10612] Info [[Anvil][anvil][stable][rtm][3982861]] +(I) [12:21:17.088] [000022800]: GameApp::SetState : new (Uninitialized) old (Uninitialized) +(I) [12:21:17.088] [000022800]: Loading step: [Platform] +(I) [12:21:17.088] [000022800]: Loading step: [Logger thread] +(I) [12:21:17.088] [000022800]: Loading step: [TimeStamp] +(I) [12:21:17.088] [000022800]: Loading step: [Timeout thread] +(I) [12:21:17.089] [000022800]: Loading step: [CoInitialize] +(I) [12:21:17.089] [000022800]: Loading step: [Process setup] +(I) [12:21:17.089] [000022800]: Loading step: [MemoryEnvironment] +(I) [12:21:17.492] [000022800]: Loading step: [InitReflectSystem] +(I) [12:21:17.535] [000022800]: Loading step: [InitGameActivator] +(I) [12:21:17.535] [000022800]: Loading step: [InitThreadingModel] +(I) [12:21:17.535] [000022800]: Primary CPU is a 3600MHz [11th Gen Intel(R) Core(TM) i7-11700K @ 3.60GHz] running at 3600MHz +(I) [12:21:17.535] [000022800]: Architecture [9], Level [6], Revision [42753]. +(I) [12:21:17.535] [000022800]: 16 logical processor(s) detected. +(I) [12:21:17.535] [000022800]: 8 physical processor(s) detected. +(I) [12:21:17.535] [000022800]: 1 processor(s) nodes detected. +(I) [12:21:17.536] [000022800]: Threading system initialized to [16]/[16] cores +(I) [12:21:17.536] [000022800]: Loading step: [ThreadingModel Main thread] +(I) [12:21:17.536] [000022800]: Registered essence thread: [Main_Thread] usesRcssWorkerThreads: [true] +(I) [12:21:17.536] [000022800]: Loading step: [Taskbar] +(I) [12:21:17.537] [000022800]: Loading step: [Havok] +(I) [12:21:17.593] [000022800]: Loading step: [Additional crash information] +(I) [12:21:17.593] [000022800]: Loading step: [Single Instance Check] +(I) [12:21:17.593] [000022800]: Loading step: [Config File] +(I) [12:21:17.659] [000022800]: GAME -- Current Steam name is [Wolfsindis] +(I) [12:21:17.659] [000022800]: GAME -- steam returned language 'english' +(I) [12:21:17.660] [000022800]: GAME -- [Company of Heroes 3] set to language [en] +(I) [12:21:17.668] [000022800]: Loading step: [Render Window] +(I) [12:21:17.668] [000022800]: Loading step: [Statgraph] +(I) [12:21:17.668] [000022800]: Loading step: [StatGraph Stats] +(I) [12:21:17.668] [000022800]: Loading step: [ArchiveManager] +(I) [12:21:17.668] [000022800]: Loading step: [Filesystem] +(I) [12:21:17.668] [000022800]: Using [C:\Users\Wolfsindis\Documents\My Games\Company of Heroes 3\] as base writable folder +(I) [12:21:17.668] [000022800]: Game -- System temp path is [C:\Users\WOLFSI~1\AppData\Local\Temp\] +(I) [12:21:17.668] [000022800]: Loading step: [FileLogger] +(I) [12:21:17.668] [000022800]: Loading step: [Lua GameBinding Traits] +(I) [12:21:17.668] [000022800]: Loading step: [Lua Libraries] +(I) [12:21:17.668] [000022800]: Loading step: [System Config] +(I) [12:21:17.668] [000022800]: FILESYSTEM -- filepath failure, missing alias 'peruserdata:configuration_user.lua' +(I) [12:21:17.670] [000022800]: Loading step: [User Folder Unloader] +(I) [12:21:17.670] [000022800]: Loading step: [Load/Save Config Settings] +(I) [12:21:17.671] [000022800]: Loading step: [Warnings] +(I) [12:21:17.671] [000022800]: Loading step: [Load Debug Symbols] +(I) [12:21:17.671] [000022800]: Loading step: [InitStateTreeManager] +(I) [12:21:17.671] [000022800]: Loading step: [Prerequisite Manager] +(I) [12:21:17.671] [000022800]: Loading step: [Prerequisite Entries] +(I) [12:21:17.671] [000022800]: Loading step: [GameModule Pre Mod Interface Init] +(I) [12:21:17.671] [000022800]: Loading step: [ModManager] +(I) [12:21:17.671] [000022800]: MODULE -- Creating module 'RelicGame'. +(I) [12:21:17.671] [000013584]: DB -- Unable to load symbols. +(I) [12:21:17.750] [000022800]: ARC -- i:\steam\steamapps\common\company of heroes 3\anvil\archives\attrib.sga 60745539 B [ID:cc658689e8327aa213f047ca598ee0c9] [Ver:fffc2ad691247ca546eb568ea3624c16] [Sig:3125471753551085620] +(I) [12:21:17.799] [000022800]: ARC -- i:\steam\steamapps\common\company of heroes 3\engine\archives\data.sga 31095123 B [ID:16c0f95516b6bd76239a8a743a290dba] [Ver:5744771b6bf7d0076da38fd66698ab66] [Sig:11499196241452783557] +(I) [12:21:17.817] [000022800]: ARC -- i:\steam\steamapps\common\company of heroes 3\engine\archives\ui.sga 1110871 B [ID:09480279ef1f221e1467f0feeeb28aa2] [Ver:817c54e161761f5425f492c437a1b118] [Sig:7674468942959196934] +(I) [12:21:17.818] [000022800]: ARC -- i:\steam\steamapps\common\company of heroes 3\common\archives\data.sga 92639 B [ID:16c0f95516b6bd76239a8a743a290dba] [Ver:13a054cf58402ebb44182403cfe05038] [Sig:15853610410799954909] +(I) [12:21:17.863] [000022800]: ARC -- i:\steam\steamapps\common\company of heroes 3\anvil\archives\data.sga 21299274 B [ID:91eb1b764829dce596439b0b53d5d902] [Ver:ac4174345deeb3145864ef2a7dbd4391] [Sig:11530009210441286727] +(I) [12:21:17.901] [000022800]: ARC -- i:\steam\steamapps\common\company of heroes 3\anvil\archives\art.sga 3564161578 B [ID:335f6c45d2d00556a1b300110fb67f63] [Ver:c21b09f2d94a56134142665b3eab8a9c] [Sig:17490811758148910231] +(I) [12:21:17.999] [000022800]: ARC -- i:\steam\steamapps\common\company of heroes 3\anvil\archives\artbuildings.sga 2066838663 B [ID:e630934e80bb0be959ddfc54da7e1e54] [Ver:51f69a75b798643e7a5faa62943db80c] [Sig:10658511370560815737] +(I) [12:21:18.047] [000022800]: ARC -- i:\steam\steamapps\common\company of heroes 3\anvil\archives\artenvironment.sga 2423748670 B [ID:a8353aa1bdde46ced0f67029944c406c] [Ver:f53ae9048fc4aa8eee4bcf18ae2f6457] [Sig:4331235070509622060] +(I) [12:21:18.105] [000022800]: ARC -- i:\steam\steamapps\common\company of heroes 3\anvil\archives\artscenarios.sga 2981297866 B [ID:ffdeb91fab5122cf1ab7c37d119dc5d5] [Ver:a09f6aa5c4c12d8b7ecd4f1278ad3c1c] [Sig:13314800952431733564] +(I) [12:21:18.145] [000022800]: ARC -- i:\steam\steamapps\common\company of heroes 3\anvil\archives\scenarios.sga 11052994 B [ID:4f6bed42a792fb5b9eae14472a7e901c] [Ver:8072fbb2aca8fd8a0014fc6411c7cb1c] [Sig:16126132213784051283] +(I) [12:21:18.440] [000022800]: ARC -- i:\steam\steamapps\common\company of heroes 3\anvil\archives\scenariosmp.sga 328364378 B [ID:709197811710287335bf21d3f3e018fe] [Ver:ad199157ee6afa02a7ffe576c84bacc4] [Sig:15283554895631761904] +(I) [12:21:18.458] [000022800]: ARC -- i:\steam\steamapps\common\company of heroes 3\anvil\archives\scenariossp.sga 1596312307 B [ID:cb1eb03a442e23d7da269decdebfe11b] [Ver:3541e20f490843f060f48daa04addebb] [Sig:54652272910917665] +(I) [12:21:18.486] [000022800]: ARC -- i:\steam\steamapps\common\company of heroes 3\anvil\archives\ui.sga 806555417 B [ID:33a67d1cab1e8601f71ae7973f75c08b] [Ver:22e416b7acc364a383d3e859b86f05ad] [Sig:14156574695406353630] +(I) [12:21:18.490] [000022800]: ARC -- i:\steam\steamapps\common\company of heroes 3\tools\archives\data.sga 1848 B [ID:94195021539650ebc2111161f08a5693] [Ver:363d1dba1f718735acb01aab51a167af] [Sig:15239600389611538894] +(I) [12:21:18.490] [000022800]: Archive [DevOnly] is [missing]! [Skipping.] +(I) [12:21:18.490] [000022800]: Archive [DevOnly] is [missing]! [Skipping.] +(I) [12:21:18.490] [000022800]: Archive [ScenariosDev] is [missing]! [Skipping.] +(I) [12:21:18.491] [000022800]: ARC -- i:\steam\steamapps\common\company of heroes 3\anvil\archives\localeenglish.sga 717587 B [ID:3e8711ed80cbdfeb375a3a0ab96600cd] [Ver:a85faa58e37ea1e22ed19e402414c71f] [Sig:16157466356404107166] +(I) [12:21:18.491] [000022800]: ARC -- i:\steam\steamapps\common\company of heroes 3\anvil\archives\movies.sga 52235 B [ID:34a3a1146f0574f5dc457975826e2333] [Ver:381b02d275791f3782d18d365d20118c] [Sig:4218715664112498104] +(I) [12:21:18.520] [000022800]: ARC -- i:\steam\steamapps\common\company of heroes 3\engine\archives\reflect.sga 1669858 B [ID:cf317ce4d037d959d1f61ec4ba4b95da] [Ver:4000d665483927fa7b057bfb03cd677a] [Sig:3196823603185954132] +(I) [12:21:18.520] [000022800]: FILESYSTEM -- filepath failure, path does not exist 'i:\steam\steamapps\common\company of heroes 3\anvil\data\telemetry\' +(I) [12:21:18.521] [000022800]: ARC -- i:\steam\steamapps\common\company of heroes 3\engine\archives\dx12shadersandedfs.sga 43153 B [ID:f5a37cc293ebf676913da1bdd46d163b] [Ver:544470eaba526c861bba259694ac91e1] [Sig:15583880971339910871] +(I) [12:21:18.543] [000022800]: ARC -- i:\steam\steamapps\common\company of heroes 3\engine\archives\dx12assets.sga 7879916 B [ID:6dee0a72320066df084864e3fd8db247] [Ver:0962f8a6da7117c12985a7f93e215627] [Sig:17757088786139192516] +(I) [12:21:18.570] [000022800]: ARC -- i:\steam\steamapps\common\company of heroes 3\common\archives\dx12shadersandedfs.sga 2076328 B [ID:bcff99d52833fd8459ed8d990c584b6d] [Ver:a040d38374382a58c497791fc9e5ad53] [Sig:6694708320012597026] +(I) [12:21:18.590] [000022800]: ARC -- i:\steam\steamapps\common\company of heroes 3\common\archives\dx12assets.sga 1233892 B [ID:2916e14abbb8c29a770cabc48186eae9] [Ver:904fea0e86224b0a27774a9adee1ee6a] [Sig:202420786684442498] +(I) [12:21:18.598] [000022800]: ARC -- i:\steam\steamapps\common\company of heroes 3\anvil\archives\dx12shadersandedfs.sga 7441047 B [ID:17b342a4951806a6286037aad597bfb4] [Ver:00bc6b25e91c79930ddf17aaebd2f784] [Sig:5975243170389471107] +(I) [12:21:18.598] [000022800]: Loading step: [Localization] +(I) [12:21:18.614] [000022800]: Loading step: [Game] +(I) [12:21:18.614] [000022800]: Loading step: [SimStaticApp] +(I) [12:21:18.614] [000022800]: Loading step: [Family Manager] +(I) [12:21:18.617] [000022800]: UTIL -- Throwing 'Unable to open file' exception on 'Attrib:Attrib\custom_entity_state_tree_reference_ids.rgd' +(I) [12:21:18.617] [000022800]: UTIL -- Failed to Load BinaryConfig file: 'Attrib:Attrib\custom_entity_state_tree_reference_ids.rgd', error: 'Unable to open file!' +(I) [12:21:18.617] [000022800]: UTIL -- Throwing 'Unable to open file' exception on 'Attrib:Attrib\custom_deferred_entity_state_tree_reference_ids.rgd' +(I) [12:21:18.617] [000022800]: UTIL -- Failed to Load BinaryConfig file: 'Attrib:Attrib\custom_deferred_entity_state_tree_reference_ids.rgd', error: 'Unable to open file!' +(I) [12:21:18.617] [000022800]: UTIL -- Throwing 'Unable to open file' exception on 'Attrib:Attrib\custom_physical_state_tree_reference_ids.rgd' +(I) [12:21:18.617] [000022800]: UTIL -- Failed to Load BinaryConfig file: 'Attrib:Attrib\custom_physical_state_tree_reference_ids.rgd', error: 'Unable to open file!' +(I) [12:21:18.617] [000022800]: UTIL -- Throwing 'Unable to open file' exception on 'Attrib:Attrib\custom_global_state_tree_reference_ids.rgd' +(I) [12:21:18.617] [000022800]: UTIL -- Failed to Load BinaryConfig file: 'Attrib:Attrib\custom_global_state_tree_reference_ids.rgd', error: 'Unable to open file!' +(I) [12:21:18.617] [000022800]: UTIL -- Throwing 'Unable to open file' exception on 'Attrib:Attrib\custom_squad_state_tree_reference_ids.rgd' +(I) [12:21:18.617] [000022800]: UTIL -- Failed to Load BinaryConfig file: 'Attrib:Attrib\custom_squad_state_tree_reference_ids.rgd', error: 'Unable to open file!' +(I) [12:21:18.617] [000022800]: Loading step: [SimApp] +(I) [12:21:18.617] [000022800]: Loading step: [Property Bag Registration] +(I) [12:21:18.621] [000022800]: Loading step: [State Tree Manager] +(I) [12:21:18.799] [000022800]: Loading step: [Sound - Rtpc Event Database Init] +(I) [12:21:18.799] [000022800]: Loading step: [Property Bag Manager] +(I) [12:21:19.066] [000022800]: MapGen - Failed to load: m_defaultCampaignPlayerStartMarker != nullptrFailed loading an attribute data field for map generation. It is likely that your attribute data is out of sync with your local build or build from the build launcher. +(I) [12:21:19.066] [000022800]: MapGen - Failed to load: m_defaultMultiplayerPlayerStartMarker != nullptrFailed loading an attribute data field for map generation. It is likely that your attribute data is out of sync with your local build or build from the build launcher. +(I) [12:21:19.066] [000022800]: MapGen - Failed to load: m_defaultOtherPlayerStartMarker != nullptrFailed loading an attribute data field for map generation. It is likely that your attribute data is out of sync with your local build or build from the build launcher. +(I) [12:21:21.488] [000022800]: PropertyBagManager Loaded in 2.689000s +(I) [12:21:21.488] [000022800]: Loading step: [Modifier Callbacks Initialize] +(I) [12:21:21.488] [000022800]: Loading step: [HandleIndex Manager] +(I) [12:21:21.488] [000022800]: Loading step: [EntityBlueprintManager] +(I) [12:21:21.490] [000022800]: Loading step: [ReflectPostExternalSystemsInited] +(I) [12:21:21.497] [000022800]: Loading step: [ModPackManager] +(I) [12:21:21.497] [000022800]: Loading step: [ModDllSetup] +(I) [12:21:21.497] [000022800]: Loading step: [FilePath Filter] +(I) [12:21:21.497] [000022800]: Loading step: [Locale System] +(I) [12:21:21.497] [000022800]: Loading step: [Compatible Architecture Check] +(I) [12:21:21.497] [000022800]: Loading step: [Compatible OS Check] +(I) [12:21:21.497] [000022800]: Loading step: [Multicore Check] +(I) [12:21:21.497] [000022800]: Loading step: [Parental Control] +(I) [12:21:21.498] [000022800]: Loading step: [NetworkGlobal] +(I) [12:21:21.498] [000022800]: Initializing Server Settings: server=coh3, title=coh3 +(I) [12:21:21.499] [000022800]: WorldwideLoginService::WorldwideLoginService - initializing +(I) [12:21:21.501] [000022800]: SystemCertsWin: Opened the CA system store. +(I) [12:21:21.501] [000022800]: WindowsCertificates: Adding certificate; subject=/CN=XBL Client IPsec Issuing CA issuer=/CN=XBL Client IPsec Issuing CA +(I) [12:21:21.501] [000022800]: WindowsCertificates: Adding certificate; subject=/DC=com/DC=microsoft/CN=Microsoft Root Certificate Authority issuer=/DC=com/DC=microsoft/CN=Microsoft Root Certificate Authority +(I) [12:21:21.501] [000022800]: WindowsCertificates: Adding certificate; subject=/C=US/ST=California/L=Irvine/O=Blizzard Entertainment/OU=Battle.net/CN=Blizzard Battle.net Local Cert issuer=/C=US/ST=California/L=Irvine/O=Blizzard Entertainment/OU=Battle.net/CN=Blizzard Battle.net Local Cert +(I) [12:21:21.501] [000022800]: WindowsCertificates: Adding certificate; subject=/C=ZA/ST=Western Cape/L=Durbanville/O=Thawte/OU=Thawte Certification/CN=Thawte Timestamping CA issuer=/C=ZA/ST=Western Cape/L=Durbanville/O=Thawte/OU=Thawte Certification/CN=Thawte Timestamping CA +(I) [12:21:21.501] [000022800]: WindowsCertificates: Adding certificate; subject=/OU=Copyright (c) 1997 Microsoft Corp./OU=Microsoft Corporation/CN=Microsoft Root Authority issuer=/OU=Copyright (c) 1997 Microsoft Corp./OU=Microsoft Corporation/CN=Microsoft Root Authority +(I) [12:21:21.501] [000022800]: WindowsCertificates: Adding certificate; subject=/C=US/O=Symantec Corporation/CN=Symantec Enterprise Mobile Root for Microsoft issuer=/C=US/O=Symantec Corporation/CN=Symantec Enterprise Mobile Root for Microsoft +(I) [12:21:21.501] [000022800]: WindowsCertificates: Adding certificate; subject=/C=US/ST=Washington/L=Redmond/O=Microsoft Corporation/CN=Microsoft Root Certificate Authority 2011 issuer=/C=US/ST=Washington/L=Redmond/O=Microsoft Corporation/CN=Microsoft Root Certificate Authority 2011 +(I) [12:21:21.501] [000022800]: WindowsCertificates: Adding certificate; subject=/C=US/O=MSFT/CN=Microsoft Authenticode(tm) Root Authority issuer=/C=US/O=MSFT/CN=Microsoft Authenticode(tm) Root Authority +(I) [12:21:21.501] [000022800]: WindowsCertificates: Adding certificate; subject=/CN=XBL Server IPsec Issuing CA issuer=/CN=XBL Server IPsec Issuing CA +(I) [12:21:21.501] [000022800]: WindowsCertificates: Adding certificate; subject=/C=US/ST=Washington/L=Redmond/O=Microsoft Corporation/CN=Microsoft Root Certificate Authority 2010 issuer=/C=US/ST=Washington/L=Redmond/O=Microsoft Corporation/CN=Microsoft Root Certificate Authority 2010 +(I) [12:21:21.501] [000022800]: WindowsCertificates: Adding certificate; subject=/C=US/ST=Washington/L=Redmond/O=Microsoft Corporation/CN=Microsoft ECC TS Root Certificate Authority 2018 issuer=/C=US/ST=Washington/L=Redmond/O=Microsoft Corporation/CN=Microsoft ECC TS Root Certificate Authority 2018 +(I) [12:21:21.501] [000022800]: WindowsCertificates: Adding certificate; subject=/O=Microsoft Trust Network/OU=Microsoft Corporation/OU=Microsoft Time Stamping Service Root/OU=Copyright (c) 1997 Microsoft Corp. issuer=/O=Microsoft Trust Network/OU=Microsoft Corporation/OU=Microsoft Time Stamping Service Root/OU=Copyright (c) 1997 Microsoft Corp. +(I) [12:21:21.501] [000022800]: WindowsCertificates: Adding certificate; subject=/O=VeriSign Trust Network/OU=VeriSign, Inc./OU=VeriSign Time Stamping Service Root/OU=NO LIABILITY ACCEPTED, (c)97 VeriSign, Inc. issuer=/O=VeriSign Trust Network/OU=VeriSign, Inc./OU=VeriSign Time Stamping Service Root/OU=NO LIABILITY ACCEPTED, (c)97 VeriSign, Inc. +(I) [12:21:21.501] [000022800]: WindowsCertificates: Adding certificate; subject=/C=US/ST=Washington/L=Redmond/O=Microsoft Corporation/CN=Microsoft ECC Product Root Certificate Authority 2018 issuer=/C=US/ST=Washington/L=Redmond/O=Microsoft Corporation/CN=Microsoft ECC Product Root Certificate Authority 2018 +(I) [12:21:21.501] [000022800]: WindowsCertificates: Adding certificate; subject=/C=US/ST=Washington/L=Redmond/O=Microsoft Corporation/CN=Microsoft Time Stamp Root Certificate Authority 2014 issuer=/C=US/ST=Washington/L=Redmond/O=Microsoft Corporation/CN=Microsoft Time Stamp Root Certificate Authority 2014 +(I) [12:21:21.502] [000022800]: WindowsCertificates: Adding certificate; subject=/C=IT/L=Milan/O=Actalis S.p.A./03358520967/CN=Actalis Authentication Root CA issuer=/C=IT/L=Milan/O=Actalis S.p.A./03358520967/CN=Actalis Authentication Root CA +(I) [12:21:21.502] [000022800]: WindowsCertificates: Adding certificate; subject=/C=US/O=IdenTrust/CN=IdenTrust Commercial Root CA 1 issuer=/C=US/O=IdenTrust/CN=IdenTrust Commercial Root CA 1 +(I) [12:21:21.502] [000022800]: WindowsCertificates: Adding certificate; subject=/C=TW/O=TAIWAN-CA/OU=Root CA/CN=TWCA Root Certification Authority issuer=/C=TW/O=TAIWAN-CA/OU=Root CA/CN=TWCA Root Certification Authority +(I) [12:21:21.502] [000022800]: WindowsCertificates: Adding certificate; subject=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert Global Root G2 issuer=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert Global Root G2 +(I) [12:21:21.502] [000022800]: WindowsCertificates: Adding certificate; subject=/C=BM/O=QuoVadis Limited/OU=Root Certification Authority/CN=QuoVadis Root Certification Authority issuer=/C=BM/O=QuoVadis Limited/OU=Root Certification Authority/CN=QuoVadis Root Certification Authority +(I) [12:21:21.502] [000022800]: WindowsCertificates: Adding certificate; subject=/C=US/O=GeoTrust Inc./CN=GeoTrust Global CA issuer=/C=US/O=GeoTrust Inc./CN=GeoTrust Global CA +(I) [12:21:21.502] [000022800]: WindowsCertificates: Adding certificate; subject=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert Trusted Root G4 issuer=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert Trusted Root G4 +(I) [12:21:21.502] [000022800]: WindowsCertificates: Adding certificate; subject=/O=Digital Signature Trust Co./CN=DST Root CA X3 issuer=/O=Digital Signature Trust Co./CN=DST Root CA X3 +(I) [12:21:21.502] [000022800]: WindowsCertificates: Adding certificate; subject=/C=CH/O=SwissSign AG/CN=SwissSign Gold CA - G2 issuer=/C=CH/O=SwissSign AG/CN=SwissSign Gold CA - G2 +(I) [12:21:21.502] [000022800]: WindowsCertificates: Adding certificate; subject=/OU=GlobalSign Root CA - R3/O=GlobalSign/CN=GlobalSign issuer=/OU=GlobalSign Root CA - R3/O=GlobalSign/CN=GlobalSign +(I) [12:21:21.502] [000022800]: WindowsCertificates: Adding certificate; subject=/C=IE/O=Baltimore/OU=CyberTrust/CN=Baltimore CyberTrust Root issuer=/C=IE/O=Baltimore/OU=CyberTrust/CN=Baltimore CyberTrust Root +(I) [12:21:21.502] [000022800]: WindowsCertificates: Adding certificate; subject=/C=GB/ST=Greater Manchester/L=Salford/O=Comodo CA Limited/CN=AAA Certificate Services issuer=/C=GB/ST=Greater Manchester/L=Salford/O=Comodo CA Limited/CN=AAA Certificate Services +(I) [12:21:21.502] [000022800]: WindowsCertificates: Adding certificate; subject=/C=TW/O=TAIWAN-CA/OU=Root CA/CN=TWCA Root Certification Authority issuer=/C=TW/O=TAIWAN-CA/OU=Root CA/CN=TWCA Root Certification Authority +(I) [12:21:21.502] [000022800]: WindowsCertificates: Adding certificate; subject=/C=US/O=Internet Security Research Group/CN=ISRG Root X1 issuer=/C=US/O=Internet Security Research Group/CN=ISRG Root X1 +(I) [12:21:21.502] [000022800]: WindowsCertificates: Adding certificate; subject=/C=BM/O=QuoVadis Limited/CN=QuoVadis Root CA 2 issuer=/C=BM/O=QuoVadis Limited/CN=QuoVadis Root CA 2 +(I) [12:21:21.502] [000022800]: WindowsCertificates: Adding certificate; subject=/C=US/ST=Arizona/L=Scottsdale/O=Starfield Technologies, Inc./CN=Starfield Root Certificate Authority - G2 issuer=/C=US/ST=Arizona/L=Scottsdale/O=Starfield Technologies, Inc./CN=Starfield Root Certificate Authority - G2 +(I) [12:21:21.502] [000022800]: WindowsCertificates: Adding certificate; subject=/C=US/O=Entrust, Inc./OU=www.entrust.net/CPS is incorporated by reference/OU=(c) 2006 Entrust, Inc./CN=Entrust Root Certification Authority issuer=/C=US/O=Entrust, Inc./OU=www.entrust.net/CPS is incorporated by reference/OU=(c) 2006 Entrust, Inc./CN=Entrust Root Certification Authority +(I) [12:21:21.502] [000022800]: WindowsCertificates: Adding certificate; subject=/C=BE/O=GlobalSign nv-sa/OU=Root CA/CN=GlobalSign Root CA issuer=/C=BE/O=GlobalSign nv-sa/OU=Root CA/CN=GlobalSign Root CA +(I) [12:21:21.502] [000022800]: WindowsCertificates: Adding certificate; subject=/C=GB/ST=Greater Manchester/L=Salford/O=COMODO CA Limited/CN=COMODO RSA Certification Authority issuer=/C=GB/ST=Greater Manchester/L=Salford/O=COMODO CA Limited/CN=COMODO RSA Certification Authority +(I) [12:21:21.502] [000022800]: WindowsCertificates: Adding certificate; subject=/C=US/O=Starfield Technologies, Inc./OU=Starfield Class 2 Certification Authority issuer=/C=US/O=Starfield Technologies, Inc./OU=Starfield Class 2 Certification Authority +(I) [12:21:21.502] [000022800]: WindowsCertificates: Adding certificate; subject=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert Global Root CA issuer=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert Global Root CA +(I) [12:21:21.502] [000022800]: WindowsCertificates: Adding certificate; subject=/C=DE/O=D-Trust GmbH/CN=D-TRUST Root Class 3 CA 2 EV 2009 issuer=/C=DE/O=D-Trust GmbH/CN=D-TRUST Root Class 3 CA 2 EV 2009 +(I) [12:21:21.502] [000022800]: WindowsCertificates: Adding certificate; subject=/C=US/O=thawte, Inc./OU=Certification Services Division/OU=(c) 2006 thawte, Inc. - For authorized use only/CN=thawte Primary Root CA issuer=/C=US/O=thawte, Inc./OU=Certification Services Division/OU=(c) 2006 thawte, Inc. - For authorized use only/CN=thawte Primary Root CA +(I) [12:21:21.503] [000022800]: WindowsCertificates: Adding certificate; subject=/C=US/O=Entrust, Inc./OU=See www.entrust.net/legal-terms/OU=(c) 2009 Entrust, Inc. - for authorized use only/CN=Entrust Root Certification Authority - G2 issuer=/C=US/O=Entrust, Inc./OU=See www.entrust.net/legal-terms/OU=(c) 2009 Entrust, Inc. - for authorized use only/CN=Entrust Root Certification Authority - G2 +(I) [12:21:21.503] [000022800]: WindowsCertificates: Adding certificate; subject=/C=US/O=SecureTrust Corporation/CN=SecureTrust CA issuer=/C=US/O=SecureTrust Corporation/CN=SecureTrust CA +(I) [12:21:21.503] [000022800]: WindowsCertificates: Adding certificate; subject=/OU=GlobalSign Root CA - R6/O=GlobalSign/CN=GlobalSign issuer=/OU=GlobalSign Root CA - R6/O=GlobalSign/CN=GlobalSign +(I) [12:21:21.503] [000022800]: WindowsCertificates: Adding certificate; subject=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert Global Root G3 issuer=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert Global Root G3 +(I) [12:21:21.503] [000022800]: WindowsCertificates: Adding certificate; subject=/C=US/O=VeriSign, Inc./OU=Class 3 Public Primary Certification Authority issuer=/C=US/O=VeriSign, Inc./OU=Class 3 Public Primary Certification Authority +(I) [12:21:21.503] [000022800]: WindowsCertificates: Adding certificate; subject=/C=PL/O=Unizeto Sp. z o.o./CN=Certum CA issuer=/C=PL/O=Unizeto Sp. z o.o./CN=Certum CA +(I) [12:21:21.503] [000022800]: WindowsCertificates: Adding certificate; subject=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert High Assurance EV Root CA issuer=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert High Assurance EV Root CA +(I) [12:21:21.503] [000022800]: WindowsCertificates: Adding certificate; subject=/C=JP/O=SECOM Trust Systems CO.,LTD./OU=Security Communication RootCA2 issuer=/C=JP/O=SECOM Trust Systems CO.,LTD./OU=Security Communication RootCA2 +(I) [12:21:21.503] [000022800]: WindowsCertificates: Adding certificate; subject=/C=DE/O=T-Systems Enterprise Services GmbH/OU=T-Systems Trust Center/CN=T-TeleSec GlobalRoot Class 2 issuer=/C=DE/O=T-Systems Enterprise Services GmbH/OU=T-Systems Trust Center/CN=T-TeleSec GlobalRoot Class 2 +(I) [12:21:21.503] [000022800]: WindowsCertificates: Adding certificate; subject=/C=DE/O=D-Trust GmbH/CN=D-TRUST Root Class 3 CA 2 2009 issuer=/C=DE/O=D-Trust GmbH/CN=D-TRUST Root Class 3 CA 2 2009 +(I) [12:21:21.503] [000022800]: WindowsCertificates: Adding certificate; subject=/C=DE/O=T-Systems Enterprise Services GmbH/OU=T-Systems Trust Center/CN=T-TeleSec GlobalRoot Class 3 issuer=/C=DE/O=T-Systems Enterprise Services GmbH/OU=T-Systems Trust Center/CN=T-TeleSec GlobalRoot Class 3 +(I) [12:21:21.503] [000022800]: WindowsCertificates: Adding certificate; subject=/C=US/O=WFA Hotspot 2.0/CN=Hotspot 2.0 Trust Root CA - 03 issuer=/C=US/O=WFA Hotspot 2.0/CN=Hotspot 2.0 Trust Root CA - 03 +(I) [12:21:21.503] [000022800]: WindowsCertificates: Adding certificate; subject=/O=Entrust.net/OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.)/OU=(c) 1999 Entrust.net Limited/CN=Entrust.net Certification Authority (2048) issuer=/O=Entrust.net/OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.)/OU=(c) 1999 Entrust.net Limited/CN=Entrust.net Certification Authority (2048) +(I) [12:21:21.503] [000022800]: WindowsCertificates: Adding certificate; subject=/C=BE/O=GlobalSign nv-sa/CN=GlobalSign Code Signing Root R45 issuer=/C=BE/O=GlobalSign nv-sa/CN=GlobalSign Code Signing Root R45 +(I) [12:21:21.503] [000022800]: WindowsCertificates: Adding certificate; subject=/C=US/O=VeriSign, Inc./OU=VeriSign Trust Network/OU=(c) 2006 VeriSign, Inc. - For authorized use only/CN=VeriSign Class 3 Public Primary Certification Authority - G5 issuer=/C=US/O=VeriSign, Inc./OU=VeriSign Trust Network/OU=(c) 2006 VeriSign, Inc. - For authorized use only/CN=VeriSign Class 3 Public Primary Certification Authority - G5 +(I) [12:21:21.503] [000022800]: WindowsCertificates: Adding certificate; subject=/C=US/ST=Arizona/L=Scottsdale/O=GoDaddy.com, Inc./CN=Go Daddy Root Certificate Authority - G2 issuer=/C=US/ST=Arizona/L=Scottsdale/O=GoDaddy.com, Inc./CN=Go Daddy Root Certificate Authority - G2 +(I) [12:21:21.503] [000022800]: WindowsCertificates: Adding certificate; subject=/C=JP/O=SECOM Trust.net/OU=Security Communication RootCA1 issuer=/C=JP/O=SECOM Trust.net/OU=Security Communication RootCA1 +(I) [12:21:21.503] [000022800]: WindowsCertificates: Adding certificate; subject=/C=US/O=VeriSign, Inc./OU=VeriSign Trust Network/OU=(c) 2008 VeriSign, Inc. - For authorized use only/CN=VeriSign Universal Root Certification Authority issuer=/C=US/O=VeriSign, Inc./OU=VeriSign Trust Network/OU=(c) 2008 VeriSign, Inc. - For authorized use only/CN=VeriSign Universal Root Certification Authority +(I) [12:21:21.503] [000022800]: WindowsCertificates: Adding certificate; subject=/C=US/ST=New Jersey/L=Jersey City/O=The USERTRUST Network/CN=USERTrust RSA Certification Authority issuer=/C=US/ST=New Jersey/L=Jersey City/O=The USERTRUST Network/CN=USERTrust RSA Certification Authority +(I) [12:21:21.504] [000022800]: WindowsCertificates: Adding certificate; subject=/C=US/O=Google Trust Services LLC/CN=GTS Root R4 issuer=/C=US/O=Google Trust Services LLC/CN=GTS Root R4 +(I) [12:21:21.504] [000022800]: WindowsCertificates: Adding certificate; subject=/C=US/O=The Go Daddy Group, Inc./OU=Go Daddy Class 2 Certification Authority issuer=/C=US/O=The Go Daddy Group, Inc./OU=Go Daddy Class 2 Certification Authority +(I) [12:21:21.504] [000022800]: WindowsCertificates: Adding certificate; subject=/C=BM/O=QuoVadis Limited/CN=QuoVadis Root CA 2 G3 issuer=/C=BM/O=QuoVadis Limited/CN=QuoVadis Root CA 2 G3 +(I) [12:21:21.504] [000022800]: WindowsCertificates: Adding certificate; subject=/C=PL/O=Unizeto Technologies S.A./OU=Certum Certification Authority/CN=Certum Trusted Network CA issuer=/C=PL/O=Unizeto Technologies S.A./OU=Certum Certification Authority/CN=Certum Trusted Network CA +(I) [12:21:21.504] [000022800]: WindowsCertificates: Adding certificate; subject=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert Assured ID Root CA issuer=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert Assured ID Root CA +(I) [12:21:21.504] [000022800]: WindowsCertificates: Adding certificate; subject=/C=SE/O=AddTrust AB/OU=AddTrust External TTP Network/CN=AddTrust External CA Root issuer=/C=SE/O=AddTrust AB/OU=AddTrust External TTP Network/CN=AddTrust External CA Root +(I) [12:21:21.504] [000022800]: SystemCertsWin: 63 certificates loaded +(I) [12:21:21.513] [000022800]: AutomatchInternal: Instantiating +(I) [12:21:21.516] [000022800]: NetworkLoadCallback not able to open file CloudGetFileURLCache-coh3-coh3.dat +(I) [12:21:21.516] [000022800]: NetworkLoadCallback not able to open file CloudFileMetadataCache-coh3-coh3.dat +(I) [12:21:21.516] [000022800]: WindowsCertificates: Adding certificate; subject=/C=CA/ST=British Columbia/L=Vancouver/O=Relic Entertainment/CN=RelicLink Root CA issuer=/C=CA/ST=British Columbia/L=Vancouver/O=Relic Entertainment/CN=RelicLink Root CA +(I) [12:21:21.517] [000022800]: Loading step: [Telemetry] +(I) [12:21:21.517] [000022800]: Loading step: [Lua Libraries] +(I) [12:21:21.517] [000022800]: Loading step: [Lua Tools] +(I) [12:21:21.517] [000022800]: Loading step: [System Tests] +(I) [12:21:21.520] [000022800]: Enumerating Graphics Adapters +(I) [12:21:21.521] [000022800]: Choosing first adapter +(I) [12:21:21.521] [000022800]: Adapter: NVIDIA GeForce RTX 3060 Ti video dedicated: 8428453888 shared: 17117802496 system dedicated: 0 +(I) [12:21:21.521] [000022800]: Checking against Adapter: Microsoft Basic Render Driver video dedicated: 0 shared: 17117802496 system dedicated: 0 +(I) [12:21:21.750] [000022800]: Adapter ignored, we already have a good dedicated, and this one doesn't have better dedicated memory +(I) [12:21:21.750] [000022800]: Chosen adapter: NVIDIA GeForce RTX 3060 Ti video dedicated: 8428453888 shared: 17117802496 system dedicated: 0 +(I) [12:21:21.751] [000022800]: Loading step: [Command DB] +(I) [12:21:21.770] [000022800]: Loading step: [Game Command DB] +(I) [12:21:21.770] [000022800]: Loading step: [InitComponentFactory] +(I) [12:21:21.770] [000022800]: Loading step: [Inventory] +(I) [12:21:21.770] [000022800]: Loading step: [AI subsystem] +(I) [12:21:21.770] [000022800]: Loading step: [Game Hooks] +(I) [12:21:21.770] [000022800]: RPC -- Initializing RpcFramework +(I) [12:21:21.770] [000022800]: Loading step: [Game Modules Init] +(I) [12:21:21.771] [000022800]: Loading step: [App Init Complete] +(I) [12:21:21.771] [000022800]: Loading step: [dbImGui] +(I) [12:21:21.771] [000022800]: Loading step: [User Data Shutdown] +(I) [12:21:21.771] [000014280]: Registered essence thread: [Simulation_Thread] usesRcssWorkerThreads: [true] +(I) [12:21:21.772] [000020556]: Registered essence thread: [Render_Thread] usesRcssWorkerThreads: [true] +(I) [12:21:22.011] [000010080]: Enumerating Graphics Adapters +(I) [12:21:22.012] [000010080]: Choosing first adapter +(I) [12:21:22.012] [000010080]: Adapter: NVIDIA GeForce RTX 3060 Ti video dedicated: 8428453888 shared: 17117802496 system dedicated: 0 +(I) [12:21:22.012] [000010080]: Checking against Adapter: Microsoft Basic Render Driver video dedicated: 0 shared: 17117802496 system dedicated: 0 +(I) [12:21:22.189] [000010080]: Adapter ignored, we already have a good dedicated, and this one doesn't have better dedicated memory +(I) [12:21:22.189] [000010080]: Chosen adapter: NVIDIA GeForce RTX 3060 Ti video dedicated: 8428453888 shared: 17117802496 system dedicated: 0 +(I) [12:21:22.381] [000010080]: -------- GPU and Output INFO -------- +(I) [12:21:22.382] [000010080]: NVIDIA GeForce RTX 3060 Ti -- 8038MB dedicated video memory, 0MB dedicated system memory and 16324MB shared system memory available. +(I) [12:21:22.382] [000010080]: Primary Output Device is \\.\DISPLAY1, Resolution is 1920x1080 +(I) [12:21:22.382] [000010080]: Output Device is \\.\DISPLAY2, Resolution is 1920x1080 +(I) [12:21:22.382] [000010080]: Microsoft Basic Render Driver -- 0MB dedicated video memory, 0MB dedicated system memory and 16324MB shared system memory available. +(I) [12:21:22.533] [000022800]: Requesting max allowed 3763 MB of video memory. OS-assigned budget = 7270 MB. Current usage = 297 MB. +(I) [12:21:22.650] [000022800]: Loading step: [Render Anim] +(I) [12:21:22.650] [000022800]: Loading step: [Alias] +(I) [12:21:22.651] [000022800]: Loading step: [Hotswapping] +(I) [12:21:22.651] [000022800]: Loading step: [ITextureUtil] +(I) [12:21:22.651] [000022800]: Loading step: [TextureManager] +(I) [12:21:22.651] [000022800]: Loading step: [Loaders] +(I) [12:21:22.651] [000022800]: Loading step: [ActionCommandFunction] +(I) [12:21:22.651] [000022800]: Loading step: [TeamColourCommandFunction] +(I) [12:21:22.651] [000022800]: Loading step: [SetShaderVariableCommandFunction] +(I) [12:21:22.651] [000022800]: Loading step: [IntersectUtil] +(I) [12:21:22.651] [000022800]: Loading step: [ShadowManager] +(I) [12:21:22.651] [000022800]: Loading step: [Debug Render] +(I) [12:21:22.651] [000022800]: Loading step: [Autodetect Settings] +(I) [12:21:22.651] [000022800]: -------- Display Adapter Driver Information -------- +(I) [12:21:22.651] [000022800]: Vendor: NVIDIA (0x10de) +(I) [12:21:22.651] [000022800]: Installed Driver Version: r530_99 (53129) +(I) [12:21:22.651] [000022800]: Required Driver Version: 512.15 (51215) +(I) [12:21:22.651] [000022800]: ---------------------------------------------------- +(I) [12:21:23.364] [000020556]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [12:21:24.351] [000022800]: Results of 8 GPU performance test frames: Median = 35.428352ms, average = 35.382526ms, min = 34.459648ms, max = 36.166656ms +(I) [12:21:24.351] [000022800]: Detected: CPU [Max][Score: 765.87][RAM: 32], GPU [Rec][Score: 113.18][VRAM: 8] +(I) [12:21:24.352] [000022800]: ARC -- i:\steam\steamapps\common\company of heroes 3\anvil\archives\soundcommon.sga 13190 B [ID:70641d3636c52218e9ecf2aba8a04c76] [Ver:024c7383dfa558db11191a518b810ebc] [Sig:8818703569101034976] +(I) [12:21:24.382] [000022800]: ARC -- i:\steam\steamapps\common\company of heroes 3\anvil\archives\soundspeechallies.sga 225860918 B [ID:a3d79f90e4bdec5cb47a67abda5a2793] [Ver:a7ac9a31acfb6df51f35168fc1293b8c] [Sig:10856766631629344128] +(I) [12:21:24.417] [000022800]: ARC -- i:\steam\steamapps\common\company of heroes 3\anvil\archives\soundspeechalliesuk.sga 1641141840 B [ID:ed506ab18d21f2ffe3194169ba1d9a3c] [Ver:d96a01231fca3bf02b892cd8bf50fa81] [Sig:2818665100462973260] +(I) [12:21:24.461] [000022800]: ARC -- i:\steam\steamapps\common\company of heroes 3\anvil\archives\soundspeechalliesus.sga 983223675 B [ID:7a1866d3e9d2d1e3cd91cf5ac53deaa9] [Ver:e604e0db28ec7add24ba161d09c01e7b] [Sig:4611963199648881550] +(I) [12:21:24.515] [000022800]: ARC -- i:\steam\steamapps\common\company of heroes 3\anvil\archives\soundspeechaxis.sga 407160050 B [ID:44d5e1d8695f153cc8d01842ce4013df] [Ver:2c65174f70469ddb1349fb58372f8976] [Sig:13735343381939219584] +(I) [12:21:24.537] [000022800]: ARC -- i:\steam\steamapps\common\company of heroes 3\anvil\archives\soundspeechaxisdak.sga 955699799 B [ID:7c9beb5bbe4c6377f9af4992656de107] [Ver:936c46f43705f934d0248d1fdb0b859b] [Sig:8745198740489113604] +(I) [12:21:24.577] [000022800]: ARC -- i:\steam\steamapps\common\company of heroes 3\anvil\archives\soundspeechaxiswehr.sga 1153528833 B [ID:86c53ff39ed7cba5c213d242f3da1e68] [Ver:2519390378b9579428c7714c52702c3f] [Sig:1958587579265905020] +(I) [12:21:24.615] [000022800]: ARC -- i:\steam\steamapps\common\company of heroes 3\anvil\archives\soundspeechcampaign.sga 1031570801 B [ID:622fb949ed9a0aec199fafdfb5e30bb7] [Ver:060267ad4b08a0b5c0ad04bc1bf43c42] [Sig:10229608255538247120] +(I) [12:21:24.617] [000022800]: ARC -- i:\steam\steamapps\common\company of heroes 3\anvil\archives\soundhigh.sga 894533141 B [ID:95a11ec6fbb00f11e9eef24ff8ae22e5] [Ver:8e0976d12090a5e167e316f98d812c18] [Sig:17332340039860731440] +(I) [12:21:24.618] [000022800]: ARC -- i:\steam\steamapps\common\company of heroes 3\engine\archives\arthigh.sga 6678 B [ID:e8f87e4ac202807565d2b4980453804d] [Ver:2687154863f6a8aae64a123d657f5735] [Sig:6704931815395175266] +(I) [12:21:24.618] [000022800]: ARC -- i:\steam\steamapps\common\company of heroes 3\anvil\archives\arthigh.sga 472 B [ID:8a629ab005ea51b2b5d08365bdcfe69c] [Ver:cd4ca20af4cc08abcb623f9c2bf1812a] [Sig:9610569117138263877] +(I) [12:21:24.618] [000022800]: Loading step: [Sound] +(I) [12:21:35.386] [000022800]: Loading step: [Fonts] +(I) [12:21:35.388] [000022800]: Loading step: [Statgraph] +(I) [12:21:35.388] [000022800]: Loading step: [Debug Console] +(I) [12:21:35.388] [000022800]: Loading step: [Movie Manager] +(I) [12:21:35.388] [000022800]: Loading step: [Flush Inventory] +(I) [12:21:35.388] [000022800]: Loading step: [Purge BackgroundLoader] +(I) [12:21:35.388] [000022800]: Loading step: [Unload inventory] +(I) [12:21:35.388] [000022800]: Loading step: [Cancel Pending Soundbank Loads] +(I) [12:21:35.571] [000022800]: Loading step: [Init Screen Background] +(I) [12:21:35.571] [000022800]: Loading step: [Cursor] +(I) [12:21:35.654] [000022800]: Loading step: [Presentation App] +(I) [12:21:35.654] [000022800]: Loading step: [Presentation Static App] +(I) [12:21:35.654] [000022800]: Loading step: [DestinationFormationManager] +(I) [12:21:35.654] [000022800]: Loading step: [Campaign Manager] +(I) [12:21:35.654] [000022800]: Loading step: [Mods] +(I) [12:21:35.655] [000022800]: ARC -- C:\Users\Wolfsindis\Documents\My Games\Company of Heroes 3\mods\extension\subscriptions\2937361544\ccm.sga 391256 B [ID:385d981096ba4ece90408281db65174e] [Ver:bb33efac3af3265f9b8d6b3924dc20f7] [Sig:0] +(I) [12:21:35.656] [000022800]: ARC -- C:\Users\Wolfsindis\Documents\My Games\Company of Heroes 3\mods\extension\subscriptions\2937361656\more_game_options.sga 199873 B [ID:129e3278f5364d2cb56577afcf088ada] [Ver:04f21e320b5b492a15a429629728cdba] [Sig:0] +(I) [12:21:35.656] [000022800]: ARC -- C:\Users\Wolfsindis\Documents\My Games\Company of Heroes 3\mods\extension\subscriptions\2937375102\benghazi_6p.sga 7067316 B [ID:f2599c0eaedb419884fe04d7122c6783] [Ver:50c125e67d0b1e549048bcc6dabb5e99] [Sig:0] +(I) [12:21:35.656] [000022800]: ARC -- C:\Users\Wolfsindis\Documents\My Games\Company of Heroes 3\mods\extension\subscriptions\2937807813\Wikinger_Mediterranean_Theater_of_War.sga 4217 B [ID:85aeb322a41345eab9dd50143fa7bc0f] [Ver:9b5c956de54247994b5c828a3cd1612e] [Sig:0] +(I) [12:21:35.657] [000022800]: ARC -- C:\Users\Wolfsindis\Documents\My Games\Company of Heroes 3\mods\extension\subscriptions\2937826693\Wikinger_MToW_Win_Condition_Pack.sga 14601 B [ID:50a1e859d34b4fc680f74bdd65a8fb8f] [Ver:c42ca3b220eb02d3ccd1641364d3f8ae] [Sig:0] +(I) [12:21:35.658] [000022800]: ARC -- C:\Users\Wolfsindis\Documents\My Games\Company of Heroes 3\mods\extension\subscriptions\2937856723\Spearhead_III.sga 16891764 B [ID:0c95d46f99da4440825560abf1d54373] [Ver:e3efc41ff2406514f9f93a3edfdf75c0] [Sig:0] +(I) [12:21:35.746] [000022800]: ARC -- C:\Users\Wolfsindis\Documents\My Games\Company of Heroes 3\mods\extension\subscriptions\2938309849\Gardens_2v2.sga 7298177 B [ID:bd13ce31c7a74180abfc0f6120bd4475] [Ver:dc430fc5390b89c525239993c51d4f72] [Sig:0] +(I) [12:21:35.746] [000022800]: ARC -- C:\Users\Wolfsindis\Documents\My Games\Company of Heroes 3\mods\extension\subscriptions\2938598458\Bottleneck_Canyon.sga 9363807 B [ID:d7f3b161b4354ad99e08492433fec501] [Ver:17d5a9266245a3082a9d552d022158f8] [Sig:0] +(I) [12:21:35.748] [000022800]: ARC -- C:\Users\Wolfsindis\Documents\My Games\Company of Heroes 3\mods\extension\subscriptions\2939316717\Vire_River_Valley.sga 3288462 B [ID:8f1e9fac16ab49ff840448f0e7776563] [Ver:a8ae3d99bf844b17d789ba8d491da8ad] [Sig:0] +(I) [12:21:35.748] [000022800]: ARC -- C:\Users\Wolfsindis\Documents\My Games\Company of Heroes 3\mods\extension\subscriptions\2941428221\Islands.sga 5555268 B [ID:d2fe0084d77044cca5facbdd1bc62862] [Ver:8427b77a38957caccbd1b47dddee6107] [Sig:0] +(I) [12:21:35.749] [000022800]: ARC -- C:\Users\Wolfsindis\Documents\My Games\Company of Heroes 3\mods\extension\subscriptions\2941925292\Red_River.sga 6065055 B [ID:35e95532cffe4d51b0db4b87a0f1459c] [Ver:ecc40c44a7495add8a8ff16811a0d0c2] [Sig:0] +(I) [12:21:35.749] [000022800]: ARC -- C:\Users\Wolfsindis\Documents\My Games\Company of Heroes 3\mods\extension\subscriptions\2942790265\AdvancedAI.sga 295140 B [ID:38f774e026044ee192b2a3fa32e6f5ca] [Ver:f8e9830e9094998b8e212966377ac2ae] [Sig:0] +(I) [12:21:35.750] [000022800]: ARC -- C:\Users\Wolfsindis\Documents\My Games\Company of Heroes 3\mods\extension\subscriptions\2943420070\4p_Alpen_Glow.sga 5178104 B [ID:3971d46230214db5a7997f8e3b2ff638] [Ver:d58407ada18c5f7ddb0e700b308b3922] [Sig:0] +(I) [12:21:35.751] [000022800]: ARC -- C:\Users\Wolfsindis\Documents\My Games\Company of Heroes 3\mods\extension\subscriptions\2943759714\Gilroy_Harbor.sga 4100811 B [ID:70ec4b16dbfc43dfa5aa5b207d761174] [Ver:9ef4e869b5d1a06b2dea608cb636a123] [Sig:0] +(I) [12:21:35.751] [000022800]: ARC -- C:\Users\Wolfsindis\Documents\My Games\Company of Heroes 3\mods\extension\subscriptions\2944209487\2p_angoville.sga 5124588 B [ID:c39ff8fd7c1642589099fb4c010bd1b9] [Ver:b7c41c6609c4560182ba2c77cbb78d98] [Sig:0] +(I) [12:21:35.752] [000022800]: ARC -- C:\Users\Wolfsindis\Documents\My Games\Company of Heroes 3\mods\extension\subscriptions\2946692106\Serpentine.sga 10804225 B [ID:3b67430a4e624a3ea7cddca142e29cfe] [Ver:5aaef9716c74cfb8a86d95a345477619] [Sig:0] +(I) [12:21:35.752] [000022800]: ARC -- C:\Users\Wolfsindis\Documents\My Games\Company of Heroes 3\mods\extension\subscriptions\2946837150\Ven_Provenance.sga 4570253 B [ID:560ecc6b7fc34e0986cf32473cccd528] [Ver:6c17fb5935b5203a8f4447d3fa9c1eed] [Sig:0] +(I) [12:21:35.753] [000022800]: ARC -- C:\Users\Wolfsindis\Documents\My Games\Company of Heroes 3\mods\extension\subscriptions\2946968258\BigMap.sga 4781359 B [ID:ada65518f13848628b43af07e555e08a] [Ver:4afa6100bbcbc1110b599bb031d067ae] [Sig:0] +(I) [12:21:35.753] [000022800]: ARC -- C:\Users\Wolfsindis\Documents\My Games\Company of Heroes 3\mods\extension\subscriptions\2948322943\8_Steppes.sga 4167831 B [ID:190a5ebdfc5e41c7b5851ead437923fa] [Ver:d4470942c1db103d16d5088051ab2c85] [Sig:0] +(I) [12:21:35.753] [000022800]: ARC -- C:\Users\Wolfsindis\Documents\My Games\Company of Heroes 3\mods\extension\subscriptions\2950669383\6_Serpentin_Hill_night.sga 10838520 B [ID:e1373ec841874ad9a3f58676f8f1c686] [Ver:a66262e89f1e935cef1717a6cbb73d3d] [Sig:0] +(I) [12:21:35.754] [000022800]: ARC -- C:\Users\Wolfsindis\Documents\My Games\Company of Heroes 3\mods\extension\subscriptions\2952914265\Hamada.sga 3894572 B [ID:4f6c3f5655b34a9890f720d61d6cc166] [Ver:cfa76af94ea9e135cd4c0688f42926be] [Sig:0] +(I) [12:21:35.754] [000022800]: Failed to load locale+21:en\en.ucs: file name collision. +(I) [12:21:35.895] [000022800]: GAME -- (WorldManager) Cannot find original scenario "po_valley_4p" referenced from data:scenarios\missions\skirmish\po_valley_sp\po_valley_sp.scenref +(I) [12:21:35.895] [000022800]: GAME -- (WorldManager) Could not load scenario reference file data:scenarios\missions\skirmish\po_valley_sp\po_valley_sp.scenref. Please check syntax. +(I) [12:21:35.936] [000022800]: Loading step: [Item Manager] +(I) [12:21:35.936] [000022800]: Loading step: [Loadout Manager] +(I) [12:21:35.936] [000022800]: Loading step: [Chat Manager] +(I) [12:21:35.938] [000022800]: Loading step: [Squad Command Processor Types] +(I) [12:21:35.938] [000022800]: Loading step: [Squad Command Processor Types from Games] +(I) [12:21:35.938] [000022800]: Loading step: [IEngineInitializable] +(I) [12:21:35.951] [000022800]: Invalid group developer found in profile Default WASD Profile. Ignoring +(I) [12:21:35.952] [000022800]: CRC & Version Info : exe 0x00002974:data 0x273f815d:flags 0 +(I) [12:21:35.952] [000022800]: GameApp::SetState : new (Unloaded) old (Uninitialized) +(I) [12:21:38.686] [000022800]: GameApp::SetState : new (FrontEnd) old (Unloaded) +(I) [12:21:38.686] [000022800]: GameApp::SetTargetState : new (Uninitialized) old (FrontEnd) +(I) [12:21:38.694] [000022800]: FILESYSTEM -- filepath failure, missing alias 'Save:Campaign\*.rlt' +(I) [12:21:38.694] [000022800]: FILESYSTEM -- filepath failure, missing alias 'Save:AutoSave\Campaign\*.rlt' +(I) [12:21:38.694] [000022800]: FILESYSTEM -- filepath failure, missing alias 'Save:Operations\*.sav' +(I) [12:21:38.694] [000022800]: FILESYSTEM -- filepath failure, missing alias 'Save:Skirmish\*.sav' +(I) [12:21:38.729] [000020556]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [12:21:38.796] [000022800]: Requesting ticket +(I) [12:21:39.031] [000022800]: OnRequest app ticket returned N +(I) [12:21:39.031] [000022800]: SteamAuth received ticket at t=343446848 +(I) [12:21:40.120] [000022800]: Found 1 profiles for account /steam/76561198023526153 +(I) [12:21:40.120] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:40.120] [000022800]: Found profile: /steam/76561198023526153 +(I) [12:21:40.120] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:40.120] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:40.120] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:40.120] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:40.120] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:40.120] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:40.120] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:40.120] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:40.120] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:40.120] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:40.120] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:40.120] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:40.120] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:40.120] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:40.120] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:40.120] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:40.120] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:40.120] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:40.120] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:40.120] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:40.120] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:40.120] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:40.120] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:40.120] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:40.120] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:40.120] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:40.120] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:40.120] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:40.121] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:40.124] [000022800]: Login attempt: C00T01R00X-01 52656C69008C +(I) [12:21:40.202] [000022800]: System was measured to be capable of copying [10405] MB/sec. +(I) [12:21:40.730] [000023200]: WorldwideLoginService::WebSocketConnection::OnConnect +(I) [12:21:46.918] [000022800]: GAME -- ValidateScenarioDesc(): Gamesave app version mismatch (data:scenarios\missions\africa\archetype\destroy\desert_route_tank_battle ver binary version stamp or crc/data crc:8369/-2068725181) required:10612/658473309 +(I) [12:21:46.944] [000022800]: GAME -- ValidateScenarioDesc(): Gamesave app version mismatch (data:scenarios\missions\africa\majors\tobruk\tobruk_capture ver binary version stamp or crc/data crc:8369/-2068725181) required:10612/658473309 +(I) [12:21:48.938] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:48.953] [000022800]: GetPartyStatsByID found 1 teams for user ID 3264 +(I) [12:21:55.577] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:55.577] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:55.577] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:55.577] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:55.577] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:21:55.577] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:22:00.013] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c0d6dab5ef11e0fe41b84115312f9d579e9fd59290295fa34ee6faf5e3c55334 +(I) [12:22:06.182] [000022800]: starting online hosting +(I) [12:22:06.668] [000022800]: OnlineHostAsync success +(I) [12:22:06.668] [000022800]: Created Matchinfo for sessionID 5863626 +(I) [12:22:06.668] [000022800]: OnJoinAdvertisementSuccess - joined online match, server leave notification required +(I) [12:22:06.668] [000022800]: starting local hosting +(I) [12:22:06.668] [000022800]: ValidateCustomData: called with 5586 bytes of custom data +(I) [12:22:06.668] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:22:06.668] [000022800]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [12:22:06.668] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:22:06.676] [000022800]: Sending matchinfo change #2 +(I) [12:22:06.677] [000022800]: HostAsync - got operation info 0:SessionOperationInfo::SUCCESS +(I) [12:22:06.684] [000022800]: hosting - Session is connected +(I) [12:22:06.687] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=1/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=1/0, Pdel=0/0, drop=0/0, data=1/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=3/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=3/0, lb_p=0/0, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=1/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(E) [12:22:06.783] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [12:22:06.875] [000022800]: CreateSteamSessionAsync::Process: Successfully created lobby; lobbyId=109775243298075204 +(I) [12:22:07.861] [000023200]: Read bytes [0,"PlatformSessionUpdateMessage",3264,[5863626,"0",109775243298075204,""]] +(I) [12:22:07.866] [000022800]: Sending matchinfo change #3 +(I) [12:22:07.902] [000022800]: HostAsync - completed with HostResult = 0 +(I) [12:22:07.902] [000022800]: Party::SetHostJoinResult - 0 +(I) [12:22:07.902] [000022800]: Party::SetStatus - S_CONFIGURING +(I) [12:22:07.902] [000022800]: WorldwideAutomatchService::OnHostComplete - automatcher is no longer active - stopPollPending 0 automatchPollID 18446744073709551615 +(E) [12:22:07.921] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [12:22:07.991] [000022800]: Sending matchinfo change #4 +(E) [12:22:08.034] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [12:22:26.009] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4bb3cf581ee1c40f077e8dca65af2ca13b8f219a59bd6da838072eeb2fd8c064 +(I) [12:23:07.004] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/2, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/2, Pdel=0/0, drop=0/0, data=2/6, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=2/10, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=2/4, lb_p=24/4, lb_c=0/1, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:24:08.004] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=24/4, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:24:45.225] [000022800]: Sending matchinfo change #5 +(E) [12:24:45.247] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [12:24:45.861] [000022800]: Sending matchinfo change #6 +(E) [12:24:45.996] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [12:24:48.267] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [12:24:48.274] [000022800]: Sending matchinfo change #8 +(E) [12:24:48.365] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [12:24:48.899] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [12:24:48.899] [000022800]: Sending matchinfo change #9 +(E) [12:24:48.991] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [12:24:50.938] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:24:50.938] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:24:50.938] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:24:50.938] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:24:50.938] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:24:50.938] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:24:50.938] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:24:50.938] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:24:50.938] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:24:50.938] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:24:50.938] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:24:50.938] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:24:50.938] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:24:50.938] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:24:50.938] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:24:50.938] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:24:50.938] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:24:50.938] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:24:50.938] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:24:50.938] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:24:50.938] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:24:50.938] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:24:50.938] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:24:50.938] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:24:50.938] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:24:50.938] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:24:50.938] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:24:51.535] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:24:56.613] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:24:56.628] [000022800]: GetPartyStatsByID found 1 teams for user ID 3264 +(I) [12:24:59.001] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [12:24:59.204] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [12:25:03.011] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=82f63d39712c2c012036a43e873717157ee32893374ef3f95a0fecf9a046208c +(I) [12:25:09.003] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=4/8, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=4/8, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=4/4, lb_p=22/4, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:25:10.005] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [12:25:10.202] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [12:25:21.002] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [12:25:21.192] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [12:25:26.009] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5367b23cb3949e848aa83d6082633bfd17891a32000cf3db5d7add57da584e0d +(I) [12:25:27.512] [000023200]: Read bytes [0,"Automatch2GameMessage",3264,["44204","5863801","cliff_crossing_2p","203852","1","2","2","1","authtoken","44.209.208.120",27002,27112,27212,[[5863801,3264,586,15990,203852,1,"/10.0.70.19"],[5863801,44204,109,100781,198437,0,"/10.0.70.34"]],""]] +(I) [12:25:27.517] [000022800]: AutomatchInternal - OnJoinAutomatch - Server told us join matchID=5863801, hostProfileID=44204 +(I) [12:25:27.517] [000022800]: AutomatchInternal - join request validated, attempting +(I) [12:25:28.219] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:25:28.256] [000022800]: JoinAsync: Starting AsyncJob... +(I) [12:25:28.852] [000022800]: OnlineJoinAsync success +(I) [12:25:28.852] [000022800]: Created Matchinfo for sessionID 5863801 +(I) [12:25:28.852] [000022800]: OnJoinAdvertisementSuccess - joined online match, server leave notification required +(I) [12:25:29.224] [000022800]: ValidateCustomData: called with 2836 bytes of custom data +(I) [12:25:29.224] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:25:29.224] [000022800]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [12:25:29.224] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:25:29.224] [000022800]: ValidateCustomData: called with 1674 bytes of custom data +(I) [12:25:29.224] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:25:29.224] [000022800]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [12:25:29.224] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:25:29.231] [000022800]: Accepted matchInfo updated 43 from host +(I) [12:25:29.232] [000022800]: JoinAsync - got operation info 0:SessionOperationInfo::SUCCESS +(I) [12:25:29.239] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=1/1, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/4, Pdel=0/0, drop=0/0, data=1/2, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=2/7, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=2/3, lb_p=0/1, lb_c=0/1, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(E) [12:25:29.430] [000022800]: JoinSteamSessionAsync::Process: Steam join lobby completed; failed=0 failureReason=-1 +(E) [12:25:29.430] [000022800]: JoinSteamSessionAsync::OnLobbyEnter: Error joining lobby; lobbyId=0 ioError=1 response=0 +(E) [12:25:29.444] [000022800]: JoinAsync: failed to join platform session. Continuing anyway +(I) [12:25:29.444] [000022800]: JoinAsync - completed with JoinResult = 0 +(I) [12:25:29.444] [000022800]: JoinAsync - completed with JoinResult = 0:AdvertisementJoinEvent::R_Success +(I) [12:25:29.444] [000022800]: Creating an RLink chat channel (not a multiplayer game). +(I) [12:25:29.444] [000022800]: WorldwideAutomatch2Service::OnJoinComplete - Completed Join with joinResult=0 matchID=5863801 +(I) [12:25:29.444] [000022800]: JoinAsync: AsyncJob Complete... +(I) [12:25:29.444] [000022800]: Sending matchinfo change #10 +(E) [12:25:29.525] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [12:25:29.644] [000022800]: WorldwideAutomatch2Service::Process - Got into game successfully, 2 players present, got correct slot settings - setting metadata +(I) [12:25:29.975] [000022800]: Accepted matchInfo updated 44 from host +(I) [12:25:32.001] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [12:25:32.206] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [12:25:33.001] [000022800]: WorldwideAutomatch2Service::Process - Waiting, only 0 players ready +(I) [12:25:37.004] [000022800]: WorldwideAutomatch2Service::Process - Waiting, only 0 players ready +(I) [12:25:39.014] [000022800]: Party::SetStatus - S_PLAYING +(I) [12:25:39.030] [000022800]: Sending matchinfo change #11 +(E) [12:25:39.151] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [12:25:40.730] [000022800]: Accepted matchInfo updated 45 from host +(I) [12:25:41.006] [000022800]: WorldwideAutomatch2Service::Process - Got into game successfully, 2 players present, got correct slot settings - readying up +(I) [12:25:41.006] [000022800]: WorldwidePartyService::RequestReady: Sending PlayerReadyRequest; profileID=3264 isReady=1 isSuccessful=1 +(I) [12:25:41.359] [000022800]: Accepted matchInfo updated 46 from host +(I) [12:25:42.233] [000022800]: Accepted matchInfo updated 47 from host +(I) [12:25:42.233] [000022800]: WorldwideAutomatchService::OnStartComplete - detected successful game start +(I) [12:25:42.233] [000022800]: Match Started - [44204 /steam/76561197994172925], slot = 0, ranking = 109 +(I) [12:25:42.233] [000022800]: Match Started - [3264 /steam/76561198023526153], slot = 1, ranking = 586 +(I) [12:25:42.665] [000023200]: Read bytes [0,"MatchStartMessage",3264,[[[44204,["2068340"]],[3264,["2068341","2068340"]]],[["44204","198437"],["3264","203852"]],1680517541,[["44204",[[12971744,38,452654,44204,1,0,"{}",1677205060,2,-1,19,2147483647],[12971772,1,453412,44204,1,0,"{}",1677205060,4,-1,3,2147483647],[12971743,30,452655,44204,1,0,"{}",1677205060,6,-1,19,2147483647],[12971752,39,453294,44204,1,0,"{\"epos\":\"0\",\"eslot\":\"0\"}",1677205060,12971744,-1,19,2147483647],[12971753,39,453390,44204,1,0,"{\"epos\":\"1\",\"eslot\":\"1\"}",1677205060,12971744,-1,19,2147483647],[12971754,39,453430,44204,1,0,"{\"epos\":\"2\",\"eslot\":\"2\"}",1677205060,12971744,-1,19,2147483647],[12971814,39,454134,44204,1,0,"{\"epos\":\"4\",\"eslot\":\"4\"}",1677205060,12971744,-1,19,2147483647],[12971815,39,454129,44204,1,0,"{\"epos\":\"21\",\"eslot\":\"21\"}",1677205060,12971744,-1,19,2147483647],[12971816,39,454130,44204,1,0,"{\"epos\":\"22\",\"eslot\":\"22\"}",1677205060,12971744,-1,19,2147483647],[12971817,39,454131,44204,1,0,"{\"epos\":\"23\",\"eslot\":\"23\"}",1677205060,12971744,-1,19,2147483647],[12971818,39,454135,44204,1,0,"{\"epos\":\"19\",\"eslot\":\"19\"}",1677205060,12971744,-1,19,2147483647],[12971819,39,454136,44204,1,0,"{\"epos\":\"5\",\"eslot\":\"5\"}",1677205060,12971744,-1,19,2147483647],[12971820,39,454137,44204,1,0,"{\"epos\":\"20\",\"eslot\":\"20\"}",1677205060,12971744,-1,19,2147483647],[12971821,39,454133,44204,1,0,"{\"epos\":\"3\",\"eslot\":\"3\"}",1677205060,12971744,-1,19,2147483647],[12971822,39,454139,44204,1,0,"{\"epos\":\"8\",\"eslot\":\"8\"}",1677205060,12971744,-1,19,2147483647],[12971823,39,454150,44204,1,0,"{\"epos\":\"9\",\"eslot\":\"9\"}",1677205060,12971744,-1,19,2147483647],[12971824,39,454149,44204,1,0,"{\"epos\":\"10\",\"eslot\":\"10\"}",1677205060,12971744,-1,19,2147483647],[12971825,39,454138,44204,1,0,"{\"epos\":\"11\",\"eslot\":\"11\"}",1677205060,12971744,-1,19,2147483647],[12971826,39,454142,44204,1,0,"{\"epos\":\"12\",\"eslot\":\"12\"}",1677205060,12971744,-1,19,2147483647],[12971827,39,454141,44204,1,0,"{\"epos\":\"13\",\"eslot\":\"13\"}",1677205060,12971744,-1,19,2147483647],[12971828,39,454143,44204,1,0,"{\"epos\":\"15\",\"eslot\":\"15\"}",1677205060,12971744,-1,19,2147483647],[12971829,39,454140,44204,1,0,"{\"epos\":\"16\",\"eslot\":\"16\"}",1677205060,12971744,-1,19,2147483647],[12971830,39,454148,44204,1,0,"{\"epos\":\"6\",\"eslot\":\"6\"}",1677205060,12971744,-1,19,2147483647],[12971831,39,454144,44204,1,0,"{\"epos\":\"17\",\"eslot\":\"17\"}",1677205060,12971744,-1,19,2147483647],[12971832,39,454145,44204,1,0,"{\"epos\":\"18\",\"eslot\":\"18\"}",1677205060,12971744,-1,19,2147483647],[12971833,39,454146,44204,1,0,"{\"epos\":\"7\",\"eslot\":\"7\"}",1677205060,12971744,-1,19,2147483647],[12971855,39,454534,44204,1,0,"{\"epos\":\"24\",\"eslot\":\"24\"}",1677205060,12971744,-1,19,2147483647],[12971856,39,454535,44204,1,0,"{\"epos\":\"25\",\"eslot\":\"25\"}",1677205060,12971744,-1,19,2147483647],[42283178,5,454132,44204,1,0,"{\"epos\":\"26\",\"eslot\":\"26\"}",1679720853,12971744,-1,19,-1],[42283179,5,455250,44204,1,0,"{\"epos\":\"27\",\"eslot\":\"27\"}",1679720853,12971744,-1,19,-1],[42283180,5,455277,44204,1,0,"{\"epos\":\"28\",\"eslot\":\"28\"}",1679720853,12971744,-1,19,-1],[12971731,1,454524,44204,1,0,"{\"epos\":\"0\",\"eslot\":\"0\",\"dlc\":1}",1677205060,12971772,-1,19,-1],[12971733,1,454522,44204,1,0,"{\"epos\":\"10\",\"eslot\":\"10\",\"dlc\":1}",1677205060,12971772,-1,19,-1]]],["3264",[[2068706,74,452979,3264,1,0,"{}",1677175765,2,-1,19,2147483647],[2068728,1,453412,3264,1,0,"{}",1677175765,4,-1,3,2147483647],[2068694,46,451861,3264,1,0,"{}",1677175765,6,-1,19,2147483647],[2068440,75,454503,3264,1,0,"{\"att\":{\"is_new\":{\"val\":\"0\"}},\"epos\":\"20\",\"eslot\":\"20\",\"dlc\":1}",1677175764,2068706,-1,19,-1],[2068704,75,453178,3264,1,0,"{\"epos\":\"0\",\"eslot\":\"0\"}",1677175765,2068706,-1,19,2147483647],[2068705,75,453177,3264,1,0,"{\"epos\":\"1\",\"eslot\":\"1\"}",1677175765,2068706,-1,19,2147483647],[2068707,75,453176,3264,1,0,"{\"epos\":\"2\",\"eslot\":\"2\"}",1677175 +(I) [12:25:42.673] [000022800]: WorldwideAutomatchService::OnStartComplete - detected successful game start +(I) [12:25:42.673] [000022800]: WorldwideAutomatchService::OnStartComplete - forcing pollcomplete event +(I) [12:25:42.673] [000022800]: GameApp::SetTargetState : new (Game) old (Uninitialized) +(I) [12:25:42.682] [000022800]: MOD - Setting player [0] race to: [198437] +(I) [12:25:42.684] [000022800]: MOD - Setting player [1] race to: [203852] +(I) [12:25:42.688] [000022800]: ModDllSetup: SetStatsGameUID=23455205 +(I) [12:25:42.688] [000022800]: GAME -- Scenario: data:scenarios\multiplayer\cliff_crossing_2p\cliff_crossing_2p +(I) [12:25:42.688] [000022800]: GAME -- Win Condition Qualified Name: 00000000000000000000000000000000:3318379781 +(I) [12:25:42.688] [000022800]: GAME -- Win Condition Name: VictoryPoint +(I) [12:25:42.688] [000022800]: GAME -- Human Player: 0 SLush 44204 0 afrika_korps +(I) [12:25:42.688] [000022800]: GAME -- Human Player: 1 Wolfsindis 3264 1 british_africa +(I) [12:25:42.688] [000022800]: GameApp::SetState : new (LoadingGame) old (FrontEnd) +(I) [12:25:42.879] [000022800]: WorldwideAutomatch2Service::OnPollComplete - I am peer 2, ihost:0, islocal:1 +(I) [12:25:42.879] [000022800]: WorldwideAutomatch2Service::OnPollComplete - All players in session and ready, automatch process complete +(I) [12:25:43.504] [000022800]: GameObj::StartGameObj - info, network session GUID set to [23455205]. +(I) [12:25:43.505] [000020696]: Loading step: [OnBeginLoad] +(I) [12:25:43.505] [000020696]: Loading step: [Assign Players] +(I) [12:25:43.505] [000020696]: Loading step: [FXReflection] +(I) [12:25:43.506] [000020696]: Loading step: [FXDataContext] +(I) [12:25:43.506] [000020696]: Loading step: [FX Texture Pack] +(I) [12:25:43.507] [000020696]: Loading step: [Run Havok Garbage Collection] +(I) [12:25:43.507] [000020696]: Loading step: [Flush Inventory On Application Exit] +(I) [12:25:43.507] [000020696]: Loading step: [Default World] +(I) [12:25:43.535] [000020696]: Loading step: [FX Command Function] +(I) [12:25:43.535] [000020696]: Loading step: [AnimatorCommandFunction] +(I) [12:25:43.535] [000020696]: Loading step: [MemShrink] +(I) [12:25:43.535] [000020696]: Loading step: [Sync Checking] +(I) [12:25:43.535] [000020696]: Loading step: [Tuning Variant] +(I) [12:25:43.535] [000020696]: Using scenario tuning variant [default] +(I) [12:25:43.535] [000020696]: Loading step: [Mod Packs] +(I) [12:25:43.535] [000020696]: Loading step: [SimVis System] +(I) [12:25:43.535] [000020696]: Loading step: [DefaultWorld] +(I) [12:25:43.535] [000020696]: Loading step: [Visual Physics ME] +(I) [12:25:43.535] [000020696]: Loading step: [Deferred Decal Manager] +(I) [12:25:43.535] [000020696]: Loading step: [FogVolumeManager] +(I) [12:25:43.535] [000020696]: Loading step: [Vehicle Physics Function] +(I) [12:25:43.535] [000020696]: Loading step: [Unit Occlusion Function] +(I) [12:25:43.535] [000020696]: Loading step: [Splat Function] +(I) [12:25:43.535] [000020696]: Loading step: [Grass Function] +(I) [12:25:43.535] [000020696]: Loading step: [Object Alpha Factor Function] +(I) [12:25:43.535] [000020696]: Loading step: [Renderable Managers] +(I) [12:25:43.535] [000020696]: Loading step: [Setup Skins] +(I) [12:25:43.558] [000020696]: Loading step: [AnimEventSetup] +(I) [12:25:43.558] [000020696]: Loading step: [Session Precache] +(I) [12:25:43.730] [000020696]: Loading step: [Precache core resources] +(I) [12:25:43.765] [000020696]: Loading step: [Precache EBPs] +(I) [12:25:43.792] [000020696]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [12:25:43.792] [000020696]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [12:25:43.792] [000020696]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [12:25:43.792] [000020696]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [12:25:44.231] [000020696]: Loading step: [Precache State Tree references] +(I) [12:25:44.274] [000020696]: Loading step: [Load Actions] +(I) [12:25:44.276] [000020696]: Loading step: [Load Resources from Precache] +(I) [12:25:46.528] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2475274335]. +(I) [12:25:47.919] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2475274335]. +(I) [12:25:47.943] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b70d18b575d7e4891238ae3a7d744a311600fca639501c61b5c6a2538eef3e2c +(I) [12:25:49.832] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2475274335]. +(I) [12:25:51.764] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2475274335]. +(I) [12:25:54.130] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2475274335]. +(I) [12:25:55.733] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2475274335]. +(I) [12:25:57.743] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2475274335]. +(I) [12:25:59.736] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2475274335]. +(I) [12:26:01.998] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2475274335]. +(I) [12:26:04.192] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2475274335]. +(I) [12:26:05.734] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2475274335]. +(I) [12:26:07.737] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2475274335]. +(I) [12:26:09.943] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2475274335]. +(I) [12:26:10.004] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=11/48, mdat=0/0, voip=0/0, rchk=0/0, nudg=11/6, Thdr=0/0, Peer=22/54, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=22/27, lb_p=19/5, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:26:12.241] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2475274335]. +(I) [12:26:13.809] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2475274335]. +(I) [12:26:15.747] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2475274335]. +(I) [12:26:17.816] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2475274335]. +(I) [12:26:19.744] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2475274335]. +(I) [12:26:21.776] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2475274335]. +(I) [12:26:23.792] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2475274335]. +(I) [12:26:25.748] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2475274335]. +(I) [12:26:27.743] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2475274335]. +(I) [12:26:29.749] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2475274335]. +(I) [12:26:30.003] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/20, mdat=0/0, voip=0/0, rchk=0/0, nudg=7/0, Thdr=0/0, Peer=7/20, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=7/10, lb_p=10/3, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:26:31.749] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2475274335]. +(I) [12:26:33.743] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2475274335]. +(I) [12:26:35.747] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2475274335]. +(I) [12:26:36.392] [000020696]: Loading step: [GEWorld] +(I) [12:26:36.392] [000020696]: GAME - InitializeGEWorld +(I) [12:26:37.470] [000020696]: Re-winding a compressed stream for file 'data:scenarios\multiplayer\cliff_crossing_2p\cliff_crossing_2p.scenario'. Expensive operation +(I) [12:26:37.748] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2475274335]. +(I) [12:26:38.148] [000020696]: Regenerating ImpassMap data... +(I) [12:26:38.262] [000020696]: Regenerating SimTerrainCoverMap data... +(I) [12:26:38.279] [000020696]: SimTerrainCoverMap generation took 0.016874 seconds. +(I) [12:26:39.342] [000020696]: Pathfinding::Regenerate()... +(I) [12:26:39.422] [000020696]: Pathfinding::Regenerate() Done. +(I) [12:26:39.744] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2475274335]. +(I) [12:26:39.970] [000020696]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [12:26:39.970] [000020696]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [12:26:39.970] [000020696]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [12:26:39.970] [000020696]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [12:26:39.970] [000020696]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [12:26:39.970] [000020696]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [12:26:39.970] [000020696]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [12:26:39.970] [000020696]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [12:26:39.970] [000020696]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [12:26:39.970] [000020696]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [12:26:39.970] [000020696]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [12:26:39.970] [000020696]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [12:26:39.970] [000020696]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [12:26:39.970] [000020696]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [12:26:39.970] [000020696]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [12:26:39.970] [000020696]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [12:26:39.970] [000020696]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [12:26:39.971] [000020696]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [12:26:39.971] [000020696]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [12:26:39.971] [000020696]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [12:26:39.971] [000020696]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [12:26:39.971] [000020696]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [12:26:39.971] [000020696]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [12:26:39.971] [000020696]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [12:26:39.971] [000020696]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [12:26:39.971] [000020696]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [12:26:39.971] [000020696]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [12:26:39.971] [000020696]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [12:26:39.971] [000020696]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [12:26:39.971] [000020696]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [12:26:39.971] [000020696]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [12:26:39.971] [000020696]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [12:26:40.000] [000020696]: GAME - CreateGEWorld in 3608 ms +(I) [12:26:40.000] [000020696]: SIM -- Setting SyncErrorChecking level to Low +(I) [12:26:40.000] [000020696]: Loading step: [Load Resources from GEWorld] +(I) [12:26:41.289] [000020696]: Loading step: [Sound Banks] +(I) [12:26:41.289] [000020696]: Loading step: [Session] +(I) [12:26:41.289] [000020696]: GAME - SessionSetup +(I) [12:26:41.290] [000020696]: GAME - SessionSetup finished in 0 ms +(I) [12:26:41.290] [000020696]: Loading step: [Player Setup] +(I) [12:26:41.298] [000020696]: GAME -- Recording game +(I) [12:26:41.298] [000020696]: Loading step: [Scenario Lua System] +(I) [12:26:41.315] [000020696]: Loading step: [Team Colour Init] +(I) [12:26:41.315] [000020696]: Loading step: [Race Precaching Event Listener Registration] +(I) [12:26:41.315] [000020696]: Loading step: [Simulation] +(I) [12:26:41.462] [000020696]: LoadWinCondition: - [winconditions\mode_victorypoint] succeeded. +(I) [12:26:41.635] [000020696]: Player [] killed on game tick [0] due to [unused player] +(I) [12:26:41.635] [000020696]: Player [] killed on game tick [0] due to [unused player] +(I) [12:26:41.635] [000020696]: Player [] killed on game tick [0] due to [unused player] +(I) [12:26:41.635] [000020696]: Player [] killed on game tick [0] due to [unused player] +(I) [12:26:41.635] [000020696]: Player [] killed on game tick [0] due to [unused player] +(I) [12:26:41.635] [000020696]: Player [] killed on game tick [0] due to [unused player] +(I) [12:26:41.635] [000020696]: Player [] killed on game tick [0] due to [unused player] +(I) [12:26:41.635] [000020696]: Player [] killed on game tick [0] due to [unused player] +(I) [12:26:41.635] [000020696]: Player [] killed on game tick [0] due to [unused player] +(I) [12:26:41.635] [000020696]: Player [] killed on game tick [0] due to [unused player] +(I) [12:26:41.635] [000020696]: Player [] killed on game tick [0] due to [unused player] +(I) [12:26:41.635] [000020696]: Player [] killed on game tick [0] due to [unused player] +(I) [12:26:41.635] [000020696]: Player [] killed on game tick [0] due to [unused player] +(I) [12:26:41.635] [000020696]: Player [] killed on game tick [0] due to [unused player] +(I) [12:26:41.760] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2475274335]. +(I) [12:26:41.881] [000020696]: Loading step: [GameUICore System] +(I) [12:26:41.894] [000020696]: Loading step: [UI System] +(I) [12:26:41.894] [000020696]: Loading step: [LUA] +(I) [12:26:41.894] [000020696]: Loading step: [Game Event Listener Registration] +(I) [12:26:41.894] [000020696]: Loading step: [CPU AI] +(I) [12:26:41.897] [000002328]: Registered essence thread: [AI_Thread] usesRcssWorkerThreads: [true] +(I) [12:26:41.902] [000020696]: Loading step: [Scar Init] +(I) [12:26:41.902] [000020696]: Loading step: [FX System] +(I) [12:26:41.902] [000020696]: Loading step: [Cheat Menu] +(I) [12:26:41.906] [000020696]: Loading step: [Scar Start] +(I) [12:26:41.907] [000020696]: Loading step: [Load resources] +(I) [12:26:41.939] [000020696]: Loading step: [PreDisplay] +(I) [12:26:41.939] [000020696]: Loading step: [Free Loading Data] +(I) [12:26:41.939] [000020696]: PreloadResources took 0ms. +(I) [12:26:41.939] [000020696]: Loading step: [MemShrink] +(I) [12:26:41.939] [000020696]: Loading step: [Flush Inventory] +(I) [12:26:41.943] [000020696]: Loading step: [Resolve Impasse Blockers] +(I) [12:26:41.943] [000020696]: Loading step: [Convert OOB Static Entities to Visual Only Objects] +(I) [12:26:41.943] [000020696]: Loading step: [DefaultWorld Begin Play] +(I) [12:26:42.017] [000020696]: Loading step: [Preparing game] +(I) [12:26:42.017] [000020696]: Loading step: [Start Renderer] +(I) [12:26:42.017] [000020696]: Loading step: [FrontEnd simulation initialization] +(I) [12:26:42.017] [000020696]: Loading step: [WPFGFrontEnd loading] +(I) [12:26:42.342] [000020696]: Loading step: [OnEndLoad] +(I) [12:26:42.429] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:2]" finished loading with checksum [2475274335]. +(I) [12:26:42.669] [000022800]: PerformanceRecorder::StartRecording for game size 2 +(I) [12:26:42.669] [000022800]: GAME -- Starting mission: data:scenarios\multiplayer\cliff_crossing_2p\cliff_crossing_2p +(I) [12:26:42.669] [000022800]: MEM -- available page 14273 mb, total page 40074 mb +(I) [12:26:42.682] [000022800]: GameApp::SetState : new (Game) old (LoadingGame) +(I) [12:26:42.682] [000022800]: GameApp::SetTargetState : new (Uninitialized) old (Game) +(I) [12:26:42.687] [000022800]: Local user framerate is [0.000000] +(I) [12:26:42.687] [000022800]: Local user MinDelay=[-1ms], MaxDelay=[0ms], AvgDelay=[0ms], minRTT[4294967295ms], maxRTT[0ms], avgRTT[0ms] +(I) [12:26:46.428] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8723f2ed59b810a6440c3ca7d6e4a282dbce76a1fb0535f0347400fd5ac432c1 +(I) [12:27:03.008] [000022800]: Local user framerate is [113.460281] +(I) [12:27:03.008] [000022800]: Local user MinDelay=[28ms], MaxDelay=[129ms], AvgDelay=[96ms], minRTT[119ms], maxRTT[266ms], avgRTT[151ms] +(I) [12:27:03.354] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c689c729e3a4feae2ef66e6c98862d29d2a3c0ee9f0531f3325efb676cf20d02 +(I) [12:27:11.005] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=80/12, mdat=225/450, voip=0/0, rchk=0/0, nudg=3/0, Thdr=0/0, Peer=9/12, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=9/6, lb_p=20/5, lb_c=0/0, cast=0/0, cdat=64/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:27:23.015] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cc741344b044aebbe62721497b80b8865ec9403e2a8debb3f1c126c1d5e53877 +(I) [12:27:24.000] [000022800]: Local user framerate is [120.449997] +(I) [12:27:24.000] [000022800]: Local user MinDelay=[28ms], MaxDelay=[129ms], AvgDelay=[92ms], minRTT[119ms], maxRTT[266ms], avgRTT[153ms] +(I) [12:27:31.005] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=41/0, mdat=160/320, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=10/3, lb_c=0/0, cast=0/0, cdat=40/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:27:45.001] [000022800]: Local user framerate is [118.058670] +(I) [12:27:45.001] [000022800]: Local user MinDelay=[70ms], MaxDelay=[81ms], AvgDelay=[76ms], minRTT[154ms], maxRTT[164ms], avgRTT[159ms] +(I) [12:27:45.018] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9b5d35162303703f038fc127db248c528efc6e76e2e4d3740f4f8554f4f880a8 +(I) [12:28:06.003] [000022800]: Local user framerate is [114.909767] +(I) [12:28:06.003] [000022800]: Local user MinDelay=[58ms], MaxDelay=[84ms], AvgDelay=[69ms], minRTT[145ms], maxRTT[175ms], avgRTT[164ms] +(I) [12:28:12.008] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=137/0, mdat=328/656, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=20/5, lb_c=0/0, cast=0/0, cdat=114/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:28:15.013] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=28802588cbdce66a616a83925b662c176299684260b8bdcefa9379af652f0877 +(I) [12:28:19.238] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7cf4ef5dbff8e0275c271cb7a026f6df90143a2c0debcdbe80c98b6dec67efed +(I) [12:28:23.740] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a5ba2da3127e3394fde97e82394d9c8f292ec239a7340d0c58efb3bf0770c967 +(I) [12:28:27.007] [000022800]: Local user framerate is [112.727448] +(I) [12:28:27.007] [000022800]: Local user MinDelay=[50ms], MaxDelay=[84ms], AvgDelay=[66ms], minRTT[115ms], maxRTT[239ms], avgRTT[168ms] +(I) [12:28:32.002] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=87/0, mdat=160/320, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=11/3, lb_c=0/0, cast=0/0, cdat=77/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:28:34.360] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1ed219c0ef2a354322eaf458856c00cb576c06d68d04d7062866802bbde5a7fd +(I) [12:28:41.689] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b786b51993c801bd6f060fc968c97d797eabb6d63e6d47c30e5c7ea333642332 +(I) [12:28:45.327] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ef00265cbe706070839faa8b83be25a135100b64c2ca5202f1b63f1b0367c0dd +(I) [12:28:48.015] [000022800]: Local user framerate is [111.322166] +(I) [12:28:48.015] [000022800]: Local user MinDelay=[49ms], MaxDelay=[69ms], AvgDelay=[60ms], minRTT[122ms], maxRTT[222ms], avgRTT[170ms] +(I) [12:28:49.463] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8cea41ee95eb7507d2a2f8faba6ec810e7c3fb5c9d7534f1a1becfe64f7eb0cc +(I) [12:29:01.605] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5f331d52b22b544bd4a62ef8f779d40277db93ac3f7115a55d2437d0709996b9 +(I) [12:29:09.003] [000022800]: Local user framerate is [113.150002] +(I) [12:29:09.003] [000022800]: Local user MinDelay=[47ms], MaxDelay=[72ms], AvgDelay=[58ms], minRTT[112ms], maxRTT[236ms], avgRTT[174ms] +(I) [12:29:09.401] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a3c0ef0e39b7b458036b4e1eb4edea5aa0eb727b816e1e542ad6ddef204eb73b +(I) [12:29:13.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=195/0, mdat=328/656, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=20/5, lb_c=0/0, cast=0/0, cdat=167/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:29:18.085] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=52448a94ee94042cd6d2ba0b3a77633ed160ed163548284536cc16f4718f041c +(I) [12:29:18.906] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=97a4d5953b509a953ce0eff9b0adf0fb52572c6383658dcb7529b61668ce5f33 +(I) [12:29:19.797] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d83b69ddbea0a26638ee1359dbd2846f43df5fd13f3bb8425645759a04bbaed8 +(I) [12:29:25.667] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7acf034a77837552723958fb041410e554c3139b941a37758dee3d8b64ff92d8 +(I) [12:29:27.462] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7a507888396875fd724cbb23e11075774b3f5ad094275fc07f50428d6f5f4816 +(I) [12:29:29.431] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=46327b41a6a511d3c656a467f947acb8d0174ca00ac8fdf223201aed94eaf23c +(I) [12:29:30.000] [000022800]: Local user framerate is [107.294624] +(I) [12:29:30.000] [000022800]: Local user MinDelay=[41ms], MaxDelay=[72ms], AvgDelay=[59ms], minRTT[112ms], maxRTT[283ms], avgRTT[177ms] +(I) [12:29:31.371] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=66f3adb1e84c866df905804bfb416f4716fdacc9d9ee44d02c2cd8acc6895472 +(I) [12:29:33.006] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=89/0, mdat=160/320, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=10/3, lb_c=0/0, cast=0/0, cdat=76/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:29:36.063] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=afc7890ae656c325dde4b3359d0640548a3f1fbf4acecf505084648841f4165b +(I) [12:29:44.608] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1155a8b495bbb0b121231395c488a99cd70af3e22bf4cce28cab1fde22991d1a +(I) [12:29:49.944] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9b54b05f6bbd0096844d0b51c13097a15d9b498c18905142bcc0acb5ff688bc6 +(I) [12:29:51.007] [000022800]: Local user framerate is [101.789818] +(I) [12:29:51.007] [000022800]: Local user MinDelay=[49ms], MaxDelay=[71ms], AvgDelay=[62ms], minRTT[116ms], maxRTT[234ms], avgRTT[174ms] +(I) [12:29:51.107] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4f74fa0c21e41db3f417f1f38f3d5e7b4c01aabbede2da2ed6b282cf248ee488 +(I) [12:29:52.244] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e45125395ad232efefa5ddcdda038164615007901fe11f39e57127b68e2932b6 +(I) [12:29:58.317] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fef1903c0ced4e2ecc3de0fd84cfc16a70f07ae8988f87fbabdc90439c7a51fb +(I) [12:30:12.003] [000022800]: Local user framerate is [109.056374] +(I) [12:30:12.003] [000022800]: Local user MinDelay=[39ms], MaxDelay=[73ms], AvgDelay=[57ms], minRTT[116ms], maxRTT[298ms], avgRTT[177ms] +(I) [12:30:14.001] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=157/0, mdat=328/656, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=21/5, lb_c=0/0, cast=0/0, cdat=139/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:30:18.013] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c97d3c119c6831c94ab6672ef4cd9dbe16db201f67b2d3ae14b8a973a9a5157c +(I) [12:30:22.691] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2ee6298c97671db2b56d062aeaf5f8c5202a97c2922011c87ed937394f3991b9 +(I) [12:30:26.072] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=40107e7d5f22f49572538e8d841e2908a365cc65a4ab4ef5c48fcaf3fe0baaf9 +(I) [12:30:33.007] [000022800]: Local user framerate is [116.776634] +(I) [12:30:33.007] [000022800]: Local user MinDelay=[39ms], MaxDelay=[73ms], AvgDelay=[56ms], minRTT[113ms], maxRTT[309ms], avgRTT[178ms] +(I) [12:30:34.008] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=81/0, mdat=160/320, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=9/3, lb_c=0/0, cast=0/0, cdat=72/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:30:36.283] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=28783349909ac2cf8f23c80203800772f1faead7df1e23c5e15ce15e53c4d795 +(I) [12:30:52.766] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1d072cb77a998243c294081c93910271442277a9052b4e4d18160fabc664b46c +(I) [12:30:54.001] [000022800]: Local user framerate is [111.144424] +(I) [12:30:54.001] [000022800]: Local user MinDelay=[45ms], MaxDelay=[63ms], AvgDelay=[52ms], minRTT[123ms], maxRTT[311ms], avgRTT[187ms] +(I) [12:31:00.904] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d2bc4cc6f4ae768706b0c8be3c59a8625aacea0921470958d199f9ae2d16de7b +(I) [12:31:10.551] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e2c68dddc843dba6e06aa22a661a0b1cc8af338795fce3720d29343d0673d28c +(I) [12:31:13.231] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f77ee28ac1221ba428b067f87a856ba54c3bbd6679749dbd692121d6e0580898 +(I) [12:31:15.003] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=148/0, mdat=327/654, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=21/6, lb_c=0/0, cast=0/0, cdat=131/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:31:15.005] [000022800]: Local user framerate is [110.927803] +(I) [12:31:15.005] [000022800]: Local user MinDelay=[43ms], MaxDelay=[63ms], AvgDelay=[51ms], minRTT[120ms], maxRTT[311ms], avgRTT[182ms] +(I) [12:31:22.222] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=53ea003a5f440c639e841004844a7fb4bb7a67b461028aeaa9826c6f1fd5df6d +(I) [12:31:26.017] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6fc5959325934445c183e71c41557990cd8505888d185e27633f868739f5b408 +(I) [12:31:30.658] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4959d8a3a9dedcafbb69c89254f86d6755f92a2bdbbe9409b4d6fa33ffa02109 +(I) [12:31:35.009] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=90/0, mdat=161/322, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=10/2, lb_c=0/0, cast=0/0, cdat=83/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:31:36.000] [000022800]: Local user framerate is [110.800003] +(I) [12:31:36.000] [000022800]: Local user MinDelay=[39ms], MaxDelay=[65ms], AvgDelay=[51ms], minRTT[116ms], maxRTT[311ms], avgRTT[182ms] +(I) [12:31:36.385] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d26c65ff7c8789836248770306a78cf7a394fcd4da2a566c6af87d42be3bff7b +(I) [12:31:39.708] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=82d750eacd23eb0694ed4be435be2b11128b78760aa41c0346b850606a5d2f18 +(I) [12:31:49.322] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5aa8bfe442d619f70720398fe5ff9becde79de01fb302a382cfc5670da30670f +(I) [12:31:53.013] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fb70313544443c3c09a5dc45cf43ffe0944bb47001a08355cb516c03e53a2c3d +(I) [12:31:57.003] [000022800]: Local user framerate is [109.889008] +(I) [12:31:57.004] [000022800]: Local user MinDelay=[37ms], MaxDelay=[65ms], AvgDelay=[52ms], minRTT[118ms], maxRTT[234ms], avgRTT[174ms] +(I) [12:31:58.129] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e4cbbd9f9be01b6e145e8e6502185f5aecf02ee4be2dd88b1703d79f3d7406ed +(I) [12:32:02.649] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=302e4a8a223cdc74dd37baa74a7a8aaea55e8a9f94a3c1b7e88ef984c01d3647 +(I) [12:32:09.284] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3c825b0522b77f2a03ed026ed957a16d6456757148242a6e1f799351cbb34372 +(I) [12:32:16.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=129/0, mdat=327/654, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=21/6, lb_c=0/0, cast=0/0, cdat=122/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:32:17.058] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=00f036fbc032f096ecf77173bf886dd3c819aa923d04270394ed61048acc92f7 +(I) [12:32:18.003] [000022800]: Local user framerate is [107.617714] +(I) [12:32:18.003] [000022800]: Local user MinDelay=[27ms], MaxDelay=[68ms], AvgDelay=[51ms], minRTT[118ms], maxRTT[244ms], avgRTT[176ms] +(I) [12:32:18.658] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=93406d23984612d80adcfbe227e9ea5d5d53d64f50cdbbee0b780d8058d0c44f +(I) [12:32:19.982] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f7b67da94b0a6b6f41ccfd1f654f5ee39f451d846f5ddd768e411df2764b03d2 +(I) [12:32:29.527] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c8811c62d9082562dd28cd4e658eb80703e774dac2724c61af81a516f7d9a93d +(I) [12:32:34.251] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=38b65cfb0bb00ade780554143547cd256022ba2bc11bcb0ae2a5dceb52f4ddd4 +(I) [12:32:36.009] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=71/0, mdat=160/320, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=9/2, lb_c=0/0, cast=0/0, cdat=66/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:32:39.009] [000022800]: Local user framerate is [104.129166] +(I) [12:32:39.009] [000022800]: Local user MinDelay=[27ms], MaxDelay=[73ms], AvgDelay=[53ms], minRTT[118ms], maxRTT[244ms], avgRTT[176ms] +(I) [12:32:50.595] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f256aa1bf75cc691aae6f103d51e26d31cb0754e619cbbfe044d55ea2b4058b6 +(I) [12:33:00.014] [000022800]: Local user framerate is [108.601128] +(I) [12:33:00.014] [000022800]: Local user MinDelay=[38ms], MaxDelay=[61ms], AvgDelay=[50ms], minRTT[164ms], maxRTT[239ms], avgRTT[185ms] +(I) [12:33:09.475] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ff3b184f0d58d26ddfa4db4ed7b3e88ba2ba281093a4611995d27f0de105131e +(I) [12:33:17.003] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=168/0, mdat=328/656, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=21/6, lb_c=0/0, cast=0/0, cdat=156/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:33:21.001] [000022800]: Local user framerate is [112.527489] +(I) [12:33:21.001] [000022800]: Local user MinDelay=[38ms], MaxDelay=[65ms], AvgDelay=[51ms], minRTT[108ms], maxRTT[239ms], avgRTT[183ms] +(I) [12:33:21.225] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=195ee897d346492c7c069fc8488826d5313e181d9becd3b4bea7f98b2619de56 +(I) [12:33:30.941] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=061b700d2bf24ddec3883aaa367e857a03064685970ec457a44310d8e2fdf9e5 +(I) [12:33:36.381] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b57729413a3984f0da657d4ccb1b62f99b4ab8201856ff72a3a712c9d26fc0e4 +(I) [12:33:37.001] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=113/0, mdat=160/320, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=11/3, lb_c=0/0, cast=0/0, cdat=99/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:33:40.464] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4874ca0a532777c7b922e64f8f0a48a025ddb525bbfa3b9833769e602779426c +(I) [12:33:42.003] [000022800]: Local user framerate is [110.722313] +(I) [12:33:42.003] [000022800]: Local user MinDelay=[38ms], MaxDelay=[69ms], AvgDelay=[52ms], minRTT[108ms], maxRTT[239ms], avgRTT[180ms] +(I) [12:33:52.147] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3f4ebef603ba9300d8e0176753bf30ff823a97259a474ff9609d1ec3a81553e7 +(I) [12:33:56.247] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=bc0f72aa13d508f6c3f248738b21b84c8ada375e32bb84baed8ef767f32f04d1 +(I) [12:33:58.844] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9de243243bdf6b93691db42b42c5f89d2a4f14495cca8beab47518598caab68c +(I) [12:34:03.002] [000022800]: Local user framerate is [106.050003] +(I) [12:34:03.002] [000022800]: Local user MinDelay=[38ms], MaxDelay=[72ms], AvgDelay=[55ms], minRTT[135ms], maxRTT[237ms], avgRTT[179ms] +(I) [12:34:03.399] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d918d6aba3b66afcf3ad569b288aaed60bf92d9a967a418d48923370f303ec9c +(I) [12:34:09.475] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0ef60700aa140d14c27c1b7410e577637eaf871b88d5d553e57bc736cdc9ec24 +(I) [12:34:15.265] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=01f0477126fa09856821aaa4bad05ef3b8f5c3a2510a18c2fefb9a39d39aa67b +(I) [12:34:18.005] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=226/0, mdat=328/656, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=19/5, lb_c=0/0, cast=0/0, cdat=197/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:34:24.007] [000022800]: Local user framerate is [102.858849] +(I) [12:34:24.007] [000022800]: Local user MinDelay=[38ms], MaxDelay=[72ms], AvgDelay=[54ms], minRTT[118ms], maxRTT[237ms], avgRTT[178ms] +(I) [12:34:24.119] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9f6856f61499d4a73a8150460a3217b87a28760a4cc07b54228aa2f2381c1617 +(I) [12:34:27.334] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ef9a90aabdaee1501f1c02b2102d80f9d1dca9e1589e00b9a935b6402ea6696e +(I) [12:34:27.960] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=60e7e5d825ae7f548baa72b7f35700d1da66613263ff79f078ed5f6c358a3367 +(I) [12:34:35.211] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=dfb787a3ee3bb3f7114dfca7df9a053249d13893d0760557b39f30e75cb4d4c1 +(I) [12:34:37.441] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=84b22e8291911cc2d2121750baa5e1b58f9e2211c7b70881b5589389ddc12609 +(I) [12:34:38.005] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=76/0, mdat=160/320, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=11/3, lb_c=0/0, cast=0/0, cdat=68/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:34:43.905] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0b6ff88ab92ffc102773f64a08bd62d5e5b34bbfa188a5ed4b2663ecc75c5b50 +(I) [12:34:45.000] [000022800]: Local user framerate is [98.910431] +(I) [12:34:45.000] [000022800]: Local user MinDelay=[48ms], MaxDelay=[65ms], AvgDelay=[56ms], minRTT[168ms], maxRTT[222ms], avgRTT[180ms] +(I) [12:34:47.468] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=331c58bfbd292acdae7e13551ea7700dc9f4b4b4c7f40abcb5b87f8d5df54703 +(I) [12:34:50.613] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c945e872ba9d22b9fcfd0174f0dc985a53ec04af821dd470d4f95bc20f268d61 +(I) [12:34:58.937] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3654b4b8fa0a1a52fe9b5e89e99deacdb7ebd524f503c4180c3b00e53e5830db +(I) [12:35:05.999] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=22c457c657fc5af7ff447248fb1b64f3a1ae5f65b1250ef9323057340112a08b +(I) [12:35:06.000] [000022800]: Local user framerate is [101.374649] +(I) [12:35:06.000] [000022800]: Local user MinDelay=[40ms], MaxDelay=[70ms], AvgDelay=[56ms], minRTT[116ms], maxRTT[239ms], avgRTT[177ms] +(I) [12:35:13.778] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=19203e635d1376a8d8e9c3611850ca397f8baadc68a4787d204bd08660fa65f6 +(I) [12:35:14.895] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=43130f9e41f41a86af4dd96d8eaaec323be88c647567d6ca7ca250bc1e7c2eff +(I) [12:35:17.602] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c1f57bab47273c17c530f200b4356405af23ac24394324959707580089c75aa7 +(I) [12:35:19.004] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=202/0, mdat=327/654, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=19/5, lb_c=0/0, cast=0/0, cdat=179/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:35:19.239] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7d00b9b29591dce64480a8600922cf55d9118a22c51b6800f773db7b34ddef53 +(I) [12:35:24.487] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=083eac700d2265de259b7930bbdf1149c833e1e759490e56952a6c1b6653aa41 +(I) [12:35:25.982] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3f6ad4848dfb304634e87f68c5a85b15e8e021081b2c8500ee6e3740d2a7ca23 +(I) [12:35:27.004] [000022800]: Local user framerate is [106.594666] +(I) [12:35:27.004] [000022800]: Local user MinDelay=[40ms], MaxDelay=[70ms], AvgDelay=[56ms], minRTT[112ms], maxRTT[241ms], avgRTT[178ms] +(I) [12:35:38.197] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7f0415a41e1f2b968876214d76f8c05065f5377878e1868e417822d34ecc6e57 +(I) [12:35:39.002] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=83/0, mdat=160/320, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=11/3, lb_c=0/0, cast=0/0, cdat=77/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:35:43.846] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=788699db7fbdae90ba2ce2a63523b651d4f88171c9c5c594012a9a9ba8211042 +(I) [12:35:48.001] [000022800]: Local user framerate is [109.511658] +(I) [12:35:48.001] [000022800]: Local user MinDelay=[50ms], MaxDelay=[66ms], AvgDelay=[56ms], minRTT[127ms], maxRTT[234ms], avgRTT[182ms] +(I) [12:36:01.744] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5a526ba575a8d03a506a81333e22f9a5060de396ca6f82a3ea8575d95b814208 +(I) [12:36:09.005] [000022800]: Local user framerate is [105.988701] +(I) [12:36:09.005] [000022800]: Local user MinDelay=[41ms], MaxDelay=[70ms], AvgDelay=[56ms], minRTT[127ms], maxRTT[234ms], avgRTT[179ms] +(I) [12:36:20.008] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3e2c16d2eacd5dca51a89a461485ec697270b6b1860dcd3047d80bdecb41301d +(I) [12:36:20.010] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=131/0, mdat=328/656, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=20/5, lb_c=0/0, cast=0/0, cdat=125/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:36:30.007] [000022800]: Local user framerate is [107.407028] +(I) [12:36:30.007] [000022800]: Local user MinDelay=[41ms], MaxDelay=[70ms], AvgDelay=[55ms], minRTT[116ms], maxRTT[234ms], avgRTT[180ms] +(I) [12:36:38.942] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a5aee7e2649f990c0ecca9b62dce107c3b924aa529a5ad13adf9db20c3e79a10 +(I) [12:36:40.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=51/0, mdat=160/320, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=11/3, lb_c=0/0, cast=0/0, cdat=47/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:36:44.020] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a67164518982fe874d21bba4f0f85930c3a2024d11096f322d05296f8cc59fe9 +(I) [12:36:51.007] [000022800]: Local user framerate is [103.539642] +(I) [12:36:51.007] [000022800]: Local user MinDelay=[47ms], MaxDelay=[70ms], AvgDelay=[58ms], minRTT[136ms], maxRTT[223ms], avgRTT[177ms] +(I) [12:36:54.878] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b07f901dbd52ba6e46aae150081ef600f31692ddbc2a8ad7bc979bf9f10baf84 +(I) [12:37:07.183] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a946dc7cbc86b8d965b47efe676e911f4e35b46d5bf3efb91e6f5a43ed6afb88 +(I) [12:37:09.652] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=09d5dfc5ec03d98f22849f56760296b1469484ab70dbf07bc560783431e8d74a +(I) [12:37:12.013] [000022800]: Local user framerate is [107.378517] +(I) [12:37:12.013] [000022800]: Local user MinDelay=[46ms], MaxDelay=[70ms], AvgDelay=[57ms], minRTT[114ms], maxRTT[233ms], avgRTT[176ms] +(I) [12:37:21.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=199/0, mdat=328/656, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=19/5, lb_c=0/0, cast=0/0, cdat=182/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:37:25.497] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=407f213162ca583188a971d54b0e900c64d35356d9d5da05f36343c4f5d7149b +(I) [12:37:33.019] [000022800]: Local user framerate is [107.467758] +(I) [12:37:33.019] [000022800]: Local user MinDelay=[43ms], MaxDelay=[70ms], AvgDelay=[57ms], minRTT[114ms], maxRTT[233ms], avgRTT[176ms] +(I) [12:37:37.389] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4eddf5880e3b1070067eb82a71dcf8b9f94d1d566f7dfea7c817b1e6cb5e7775 +(I) [12:37:41.004] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=111/0, mdat=160/320, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=11/3, lb_c=0/0, cast=0/0, cdat=106/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:37:43.082] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d07b3dd1ba34b664a5f15534ac06d24a7cb674597aa2ec09ac99e98c17c8d841 +(I) [12:37:54.007] [000022800]: Local user framerate is [107.517738] +(I) [12:37:54.007] [000022800]: Local user MinDelay=[46ms], MaxDelay=[68ms], AvgDelay=[56ms], minRTT[122ms], maxRTT[234ms], avgRTT[173ms] +(I) [12:38:01.180] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fef0a889a944c5b39ba68c2553e5b203f955499477eac186731bd9aa6b0c2ddd +(I) [12:38:12.377] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c9e92e5b3b1d9d4b31335234aa140f1773dc3fd15f963e3f3abce5d0eef11194 +(I) [12:38:15.003] [000022800]: Local user framerate is [108.972748] +(I) [12:38:15.003] [000022800]: Local user MinDelay=[44ms], MaxDelay=[73ms], AvgDelay=[57ms], minRTT[120ms], maxRTT[236ms], avgRTT[177ms] +(I) [12:38:20.569] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=301c72664747ad0efa7e7e3c4dae03953ed4a005c7ecae999481d7f44980be64 +(I) [12:38:22.003] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=155/0, mdat=328/656, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=20/6, lb_c=0/0, cast=0/0, cdat=144/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:38:24.704] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=472e65b26d2d1f251e7903d244c8cbbce3f0c5ea6f8036960c40325155442693 +(I) [12:38:36.004] [000022800]: Local user framerate is [107.973000] +(I) [12:38:36.004] [000022800]: Local user MinDelay=[44ms], MaxDelay=[73ms], AvgDelay=[57ms], minRTT[116ms], maxRTT[239ms], avgRTT[178ms] +(I) [12:38:36.819] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0f176f458d15888da636e66dfe39f9b5df0af2dea3f51895da63ac4719932cc7 +(I) [12:38:42.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=107/0, mdat=160/320, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=10/2, lb_c=0/0, cast=0/0, cdat=102/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:38:48.802] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d23c2186def2101ca596d0fd2bfbf739bfbbc0450bda1b143aa921928368f134 +(I) [12:38:52.791] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f92d657a2bb963f414f45d4706235f646f7d8d7ecf5d36a1ed6a509687f0bfca +(I) [12:38:55.673] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=20b3b4a81089367ae867b7e803d9e1a533d31f0349342c2458df7f2c363f858c +(I) [12:38:57.002] [000022800]: Local user framerate is [103.458611] +(I) [12:38:57.002] [000022800]: Local user MinDelay=[43ms], MaxDelay=[67ms], AvgDelay=[53ms], minRTT[121ms], maxRTT[280ms], avgRTT[180ms] +(I) [12:39:04.136] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6209826ebb9b8f6fb3915645ac2b278611b229ed620b4ba02e717c7054b0359e +(I) [12:39:06.673] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9f9b30e58a159604db6a57e91e69b3455dded11b02b645bfe5b773c51d4f8840 +(I) [12:39:13.142] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=41c8d6703b1f6e8462f80e06088585f4c66885bf2f7ce49cc7c2ec5e80b3af94 +(I) [12:39:17.815] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a22b923072984d83d92924fe7bdad74890ee4b0c6720d2f267189d553b97eef6 +(I) [12:39:18.006] [000022800]: Local user framerate is [105.962906] +(I) [12:39:18.006] [000022800]: Local user MinDelay=[42ms], MaxDelay=[72ms], AvgDelay=[55ms], minRTT[105ms], maxRTT[297ms], avgRTT[178ms] +(I) [12:39:19.253] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:39:19.271] [000022800]: GetPartyStatsByID found 1 teams for user ID 3264 +(I) [12:39:23.004] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=245/0, mdat=328/656, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=21/6, lb_c=0/0, cast=0/0, cdat=204/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:39:23.336] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=29e6cb3bb8cc7dc1d9ec0eb82cf9fa1403f10e87fb88e8d59b0780d2acdb1a75 +(I) [12:39:23.380] [000023200]: Read bytes [0,"ChallengeUpdatedMessage",3264,[[7971338,1530263,0,6,1680998400,null],0]] +(I) [12:39:28.750] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e489632988ae3b47546f406cb3bcc9ae59bffad5873ad853384c656be134cd51 +(I) [12:39:35.096] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=36382cac78ffa718544ce7847d7e6046134733b4cb782a4deb3ee0c1c37f4ad1 +(I) [12:39:39.003] [000022800]: Local user framerate is [102.214218] +(I) [12:39:39.003] [000022800]: Local user MinDelay=[11ms], MaxDelay=[90ms], AvgDelay=[56ms], minRTT[105ms], maxRTT[297ms], avgRTT[177ms] +(I) [12:39:41.884] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=32e68ca20bd18ae8c1a440a6e9d7268ecf08685b860e76a09d673f831d45ce42 +(I) [12:39:43.008] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=100/0, mdat=160/320, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=10/2, lb_c=0/0, cast=0/0, cdat=86/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:39:48.053] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e715c4fa057d7f25f22b823be7c0fc376d1570ec16c52eb9fd9e7c340bb239f5 +(I) [12:39:54.313] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=71d2bd05c09fdab6e4ca280ed422379e05055661c7be1b4befe3d0659c9b35f4 +(I) [12:39:55.144] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0d8939a1f9eb22df5d587e6f3951019c011d0ddd96ab72a6b19c2b617c526914 +(I) [12:40:00.010] [000022800]: Local user framerate is [107.378517] +(I) [12:40:00.010] [000022800]: Local user MinDelay=[44ms], MaxDelay=[69ms], AvgDelay=[55ms], minRTT[133ms], maxRTT[232ms], avgRTT[178ms] +(I) [12:40:04.734] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9f34094765851faa8bcbdc4128dc6917bdb4c7fc51d40d245f28b3d6181f8939 +(I) [12:40:08.016] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=334e9a76cf4920f4668d4d8a1dc58610dc3169c24ca29c7f954f1e4e93f071d4 +(I) [12:40:11.041] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=95a18f9209e88f95082d5b63638082fa50c2d6dce7917f89ed3e1b49833cf7cd +(I) [12:40:21.004] [000022800]: Local user framerate is [104.334351] +(I) [12:40:21.004] [000022800]: Local user MinDelay=[44ms], MaxDelay=[70ms], AvgDelay=[56ms], minRTT[110ms], maxRTT[232ms], avgRTT[175ms] +(I) [12:40:22.000] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e2f7108f6d27dfb483d064c8b57ca97a15485ff887f194fc27e487c025049152 +(I) [12:40:24.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=195/0, mdat=327/654, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=20/6, lb_c=0/0, cast=0/0, cdat=168/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:40:30.856] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b6eaa96e83c6b427926e97500992a95dbc9b4b01bd5bcc1313ec43f8d2926095 +(I) [12:40:42.007] [000022800]: Local user framerate is [100.689926] +(I) [12:40:42.007] [000022800]: Local user MinDelay=[44ms], MaxDelay=[72ms], AvgDelay=[57ms], minRTT[110ms], maxRTT[237ms], avgRTT[175ms] +(I) [12:40:44.005] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=90/0, mdat=160/320, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=10/2, lb_c=0/0, cast=0/0, cdat=85/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:40:46.541] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8c685b1700c0fb1f0af3940e39871720ea235cba4a6d072c4abd81176cb5166a +(I) [12:41:01.468] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d809076a1d2871409e823293844d1375f3614716489d5635b2bde92764c99b19 +(I) [12:41:03.002] [000022800]: Local user framerate is [103.744804] +(I) [12:41:03.002] [000022800]: Local user MinDelay=[44ms], MaxDelay=[73ms], AvgDelay=[59ms], minRTT[106ms], maxRTT[220ms], avgRTT[173ms] +(I) [12:41:06.720] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=969259eed5a75715d91c7172d6dcb47cc72a73c628dab91c3b9b775682cf0c67 +(I) [12:41:10.290] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=aaa3aa57068569a1f976521f2645886d17ec18bfd67567a90e6a64fdf994e81a +(I) [12:41:13.145] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=85b84bea01a43f5a135f385d2bd92ed5c7baad78f30bc02c2f839b3e533ad0dd +(I) [12:41:18.866] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0469fe145e37d9ac8a7a4a209fcc5fe2b52414ca27061ceacafa3c0d42e1df09 +(I) [12:41:24.007] [000022800]: Local user framerate is [95.597412] +(I) [12:41:24.007] [000022800]: Local user MinDelay=[44ms], MaxDelay=[73ms], AvgDelay=[58ms], minRTT[106ms], maxRTT[247ms], avgRTT[176ms] +(I) [12:41:25.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=209/0, mdat=328/656, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=20/6, lb_c=0/0, cast=0/0, cdat=192/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:41:25.501] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=322c887d8f3b54037cc78f68eefc717df54ef10424e1a7a31a4dd2de7cadcc74 +(I) [12:41:36.028] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f5bcdcdd21b09cfa2d886fb9eab9c6abe0a0d5e64e282caf29df52b9392e6dd1 +(I) [12:41:39.737] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8c75e6f4d85678f2e4eea96baaf54b8ecd4646fe1ae2904eded913371edbe1ad +(I) [12:41:40.911] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=171fd1efa0dc4e3912c104d023616d2b0474bdb85d30a99e6753cb5eb1a896d4 +(I) [12:41:42.578] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ed941784b2b54ee243b58b28b31296faecfb482bc7e2526ecc0f6bb9f0296652 +(I) [12:41:45.007] [000022800]: Local user framerate is [97.675575] +(I) [12:41:45.007] [000022800]: Local user MinDelay=[55ms], MaxDelay=[71ms], AvgDelay=[62ms], minRTT[150ms], maxRTT[241ms], avgRTT[185ms] +(I) [12:41:45.009] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=96/0, mdat=160/320, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=11/3, lb_c=0/0, cast=0/0, cdat=83/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:41:45.537] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c0b7e310dbc4bd0a1a6521848ce4f85fbefbc2713e466c0631b497a4f4c32403 +(I) [12:41:47.796] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ef6091fde300c0403e941ceb2a7b1864e4b8a4d979fb8138adfe96d4b46762c7 +(I) [12:41:52.289] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9ecd2de4264681778123025efbfca5ff928216bc762db9c867e42bb606277dde +(I) [12:41:59.740] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ae0f3edc2e923210761459b594ca4da3f8c3f9ae61beee4d6e840dbd4b98c9db +(I) [12:42:06.025] [000022800]: Local user framerate is [99.455238] +(I) [12:42:06.025] [000022800]: Local user MinDelay=[46ms], MaxDelay=[73ms], AvgDelay=[59ms], minRTT[115ms], maxRTT[241ms], avgRTT[172ms] +(I) [12:42:07.612] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cb0d08912fba96629b523cba6be86f135834ae2f88dbf50407f4cd16097bd721 +(I) [12:42:13.058] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a3bdcdc66ddc7457130313ea4efd3131da6b6670807b88669d486f78e69a4649 +(I) [12:42:22.495] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6ee70a87896ff6f076eb474c83840ae4b158d901d7b3c5b7a8714f439de56f03 +(I) [12:42:26.008] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=151/0, mdat=328/656, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=20/5, lb_c=0/0, cast=0/0, cdat=141/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:42:27.000] [000022800]: Local user framerate is [87.849998] +(I) [12:42:27.000] [000022800]: Local user MinDelay=[45ms], MaxDelay=[79ms], AvgDelay=[59ms], minRTT[115ms], maxRTT[264ms], avgRTT[172ms] +(I) [12:42:41.398] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6bb0071bd7707860de5a8bfd3c00eca7eab0d66b359f4a211e248c6a9a7f51dc +(I) [12:42:46.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=66/0, mdat=160/320, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=11/3, lb_c=0/0, cast=0/0, cdat=60/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:42:48.006] [000022800]: Local user framerate is [98.915367] +(I) [12:42:48.006] [000022800]: Local user MinDelay=[35ms], MaxDelay=[182ms], AvgDelay=[104ms], minRTT[115ms], maxRTT[261ms], avgRTT[160ms] +(I) [12:42:49.670] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b3251045717ecc1bb96b2e7d4fb129eebca58e3f237ba3d0e163eeb409af3e42 +(I) [12:42:52.029] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5aa4fe4ffa57527d323d3e805f19d5617c9d0336ac070a139cd270452b2daab2 +(I) [12:42:54.416] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3e4a25999f867ed5277126bb57e3ae2173509674ec2340df4ff26b348171107b +(I) [12:42:56.318] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7974da5ac6391c817cf4bfe7b0a44d091abb17cfbcd3f236111f60a9777e27b8 +(I) [12:42:58.159] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=053ae85e73b2577d99d126beb52835dc83fe8292bb1877cecafe3293d8271073 +(I) [12:43:01.987] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fc3913d0342420c842a544d0a6e387e2239d8d62b52fe50a398d44cb6f3f8ace +(I) [12:43:04.343] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f285182976a42bea8f6a14423303b14d34fad7bfd30d11c3a8ad0864078197c6 +(I) [12:43:09.001] [000022800]: Local user framerate is [94.366966] +(I) [12:43:09.001] [000022800]: Local user MinDelay=[28ms], MaxDelay=[763ms], AvgDelay=[152ms], minRTT[113ms], maxRTT[265ms], avgRTT[168ms] +(I) [12:43:12.298] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a65387c6fbbd131b4e81497998b308dfb30af4dfd1f148a6b877df70a1997bde +(I) [12:43:13.126] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8d7fb92a386be3983fd838c9f05e96649b15e32db359c7a6b61f3d630587ec5b +(I) [12:43:15.826] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=30e8ab71d1d8d97c22cb70fcc818c98153d4dd35b40ed9032e711d55d9b05ef2 +(I) [12:43:21.627] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c23a5110495e326e0fb54a0bf05ac67cd8e23c031447c28c61e8d40d6b0d2541 +(I) [12:43:25.412] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3431569c25da3e7eb2de4aa82e5facc3c0bf5d94baf1c30aea9dc9788e083f3b +(I) [12:43:27.001] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=162/0, mdat=328/656, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=19/5, lb_c=0/0, cast=0/0, cdat=137/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:43:28.510] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8f9eef63a5eba5c43262e647b84780ad62ae8a8771e86979f6085af8e6432c46 +(I) [12:43:30.007] [000022800]: Local user framerate is [101.419571] +(I) [12:43:30.007] [000022800]: Local user MinDelay=[28ms], MaxDelay=[763ms], AvgDelay=[128ms], minRTT[113ms], maxRTT[265ms], avgRTT[163ms] +(I) [12:43:30.691] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d04495f49243957f35441f14a5d0d61dab3dc31a8a080e823c80e29ef6d1cc99 +(I) [12:43:33.959] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6a0dadc6ca31310ddba1f092f33b34dcab7426bb9e2f61a8a9daa0a1e7120b33 +(I) [12:43:40.770] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=70923e3b305893b17016f2a55a14fd29fcd87321d967c96a738383a2ac512ad5 +(I) [12:43:43.690] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ae07c154eb8c47c6176fc7529c7cba972cce12682fe6df5aa4ba63d2501f2b75 +(I) [12:43:47.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=82/0, mdat=160/320, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=11/3, lb_c=0/0, cast=0/0, cdat=74/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:43:48.034] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=25979f15d5a4bf906118e9c3b43052cfd283fe0814ae6baf185301ed4b293e99 +(I) [12:43:51.003] [000022800]: Local user framerate is [85.111694] +(I) [12:43:51.003] [000022800]: Local user MinDelay=[66ms], MaxDelay=[99ms], AvgDelay=[85ms], minRTT[116ms], maxRTT[245ms], avgRTT[159ms] +(I) [12:44:01.238] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=143fb8d2d640282287f732a9f2b83f3b2264ffe98ed8b4d531b170bd76b69c90 +(I) [12:44:02.078] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=93270f2dcc5c36d32f2dd9deb1f6cb3c1bb465eaa389c0077414c2cffee0cff9 +(I) [12:44:12.004] [000022800]: Local user framerate is [101.419571] +(I) [12:44:12.004] [000022800]: Local user MinDelay=[64ms], MaxDelay=[99ms], AvgDelay=[80ms], minRTT[116ms], maxRTT[245ms], avgRTT[158ms] +(I) [12:44:15.057] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=115a91a139889649a4c88bf26f07fc9289dbd7158fbc64aa2f03163fd5798862 +(I) [12:44:15.886] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d52413e02e70a377495eaffd2f51dd4181801026ad153c8001e9fe7228d1fa32 +(I) [12:44:16.521] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=282efa5a4deb0ce0c38223ff6d36a5e45f59d6c3d8f0444c0f3b12fb30e53637 +(I) [12:44:18.901] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=771fb43301aed7d152f017b35be489e719ed5bb17235577097038b97bc36a575 +(I) [12:44:21.756] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=443606e9242538461a6d75df07c803987c36811a7fa5d261ed139b211580f694 +(I) [12:44:24.235] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7a742675721f0c9d05846820139d02215707aa875c73cef6d990021ce391af0c +(I) [12:44:26.546] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a061dfaebe571361923d17a53ed305573b5342ec531bdc86200a4352c4e32b58 +(I) [12:44:28.001] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=192/0, mdat=327/654, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=19/5, lb_c=0/0, cast=0/0, cdat=167/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:44:31.336] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=95c0aa78d2ca20fd24a6c1836173f60d82fc04f809fc9d316ba444273902e231 +(I) [12:44:33.003] [000022800]: Local user framerate is [96.416245] +(I) [12:44:33.003] [000022800]: Local user MinDelay=[26ms], MaxDelay=[99ms], AvgDelay=[75ms], minRTT[116ms], maxRTT[245ms], avgRTT[165ms] +(I) [12:44:33.786] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ce460857e0d318ab2564e3b8deaa05704c0f1ea950b12c1ecd5b1cc1b36cbbf7 +(I) [12:44:38.539] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=972cd8f688fabb66b465bc1cbfeeb68f5c0360dcff14a94a4fd9a10d3378fc3c +(I) [12:44:40.873] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3ec5984cbc1a036e984f12c5afa76926e3a65dd1dfb47b3411f829ba65c80d5c +(I) [12:44:44.567] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f7d3c18b7b59c6874f48bc4b1b7e9cb81568011dfd7bf4277f8085effd4f304b +(I) [12:44:48.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=105/0, mdat=160/320, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=11/3, lb_c=0/0, cast=0/0, cdat=89/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:44:50.955] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=903f33256032f3f20d279f8328027ab475c082cb6535e900051caaf1a5dc26eb +(I) [12:44:53.654] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=829021c00490619dfeb76a044ea76ef1f281c03fbdd57d7257ba0195e212a833 +(I) [12:44:54.014] [000022800]: Local user framerate is [88.050003] +(I) [12:44:54.014] [000022800]: Local user MinDelay=[28ms], MaxDelay=[85ms], AvgDelay=[65ms], minRTT[131ms], maxRTT[231ms], avgRTT[168ms] +(I) [12:44:59.403] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e9616a4d04825437077b3beb5d9437041508a33531d8fb805e2c35a53276330a +(I) [12:45:04.095] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b9d59dba5876629f5352d8d1e851a1a2c78c6372504e51a27c53c12b56aa6431 +(I) [12:45:11.767] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=052a5d94e6667d4f63420a45883033e38f66bd2c35e977037b42718c5a096b24 +(I) [12:45:13.105] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b31a5a874f09cd8dc6cf6514156c61be07a9497de0394da1f865f26dc5c280b9 +(I) [12:45:15.024] [000022800]: Local user framerate is [85.924217] +(I) [12:45:15.024] [000022800]: Local user MinDelay=[28ms], MaxDelay=[93ms], AvgDelay=[68ms], minRTT[116ms], maxRTT[239ms], avgRTT[167ms] +(I) [12:45:18.429] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=88c1310a1044ab2bcc06d7e2adf1c769780a966278ddc795c16468eeaa0761ba +(I) [12:45:20.078] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1fdc0fe5daa84eb924538c101d311d67fa4736bd589852bba9daff0803d89e61 +(I) [12:45:20.854] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c26c11ef33ed462033f5bdebdd272578a393d5a5e02de5408c9f029e065ba8cb +(I) [12:45:29.006] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=162/0, mdat=328/656, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=21/5, lb_c=0/0, cast=0/0, cdat=142/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:45:31.954] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f044feb059cf28b6636e878763254d360219b68d8aaf2772ded607f550101fb1 +(I) [12:45:36.002] [000022800]: Local user framerate is [94.148209] +(I) [12:45:36.002] [000022800]: Local user MinDelay=[28ms], MaxDelay=[93ms], AvgDelay=[67ms], minRTT[116ms], maxRTT[239ms], avgRTT[166ms] +(I) [12:45:41.844] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e168bb20dbc55107928d08c1bcafed6123d71ff7be9792cca3bda471d387b03e +(I) [12:45:49.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=92/0, mdat=160/320, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=9/3, lb_c=0/0, cast=0/0, cdat=82/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:45:51.283] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=67c51e85cf9ff4a5b889cf45960ec9f53e57f62477ebe9b936c6dcd1f2e65962 +(I) [12:45:53.024] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c273438de56d99373eb020e5576b3f1f1e16aaa21a836b04a4528f20328ce034 +(I) [12:45:57.001] [000022800]: Local user framerate is [101.879616] +(I) [12:45:57.001] [000022800]: Local user MinDelay=[47ms], MaxDelay=[75ms], AvgDelay=[59ms], minRTT[115ms], maxRTT[240ms], avgRTT[175ms] +(I) [12:45:59.504] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=665c9d88a9b0a889bd873f685a35a06f579e305a14cde05aaece3fa594de228f +(I) [12:46:16.522] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=50538c4d53e15e24001ae0a6056f4223089f8adeb26d32ebe3ea2291e0ccd174 +(I) [12:46:18.006] [000022800]: Local user framerate is [97.510986] +(I) [12:46:18.006] [000022800]: Local user MinDelay=[44ms], MaxDelay=[80ms], AvgDelay=[61ms], minRTT[115ms], maxRTT[258ms], avgRTT[173ms] +(I) [12:46:24.612] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a4dcdfd64ea7463f940252bc25f69c070c8b28b3e3c0033eb9686d29acbe161d +(I) [12:46:25.692] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=13b1b7b54c3244b1ecc6037a79717501f1540267f296c2731ea164656ce0ff3c +(I) [12:46:30.009] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=158/0, mdat=328/656, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=22/6, lb_c=0/0, cast=0/0, cdat=141/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:46:39.004] [000022800]: Local user framerate is [93.345329] +(I) [12:46:39.004] [000022800]: Local user MinDelay=[44ms], MaxDelay=[80ms], AvgDelay=[61ms], minRTT[115ms], maxRTT[290ms], avgRTT[174ms] +(I) [12:46:39.055] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9b416865801b9cabb1bbe75d6c06ce72e3d00946d7fcbd74f8708f455ad196bc +(I) [12:46:40.905] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ec6283d6ba22e505017e92bc0eec4e01b554529e2db282dfe444766ce45cfc47 +(I) [12:46:42.768] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=52a9762f0c80870500e6055574b48508b636d4dcd5c957a4979d20f925635ef1 +(I) [12:46:45.078] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cfd26f30054fcdf2409f16519ad65811cfd241aab6055498b4fb14dc791f8a7f +(I) [12:46:50.003] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=85/0, mdat=160/320, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=9/2, lb_c=0/0, cast=0/0, cdat=78/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:46:52.200] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=36d93613e28ea358e0b5d69b8d0d683ff0d62544b8a20834301a228fc7b46275 +(I) [12:46:54.535] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=520f882d5ba73cceb72517a6f548f0cbae691f7352249b190aa057c24490b246 +(I) [12:47:00.004] [000022800]: Local user framerate is [91.922424] +(I) [12:47:00.004] [000022800]: Local user MinDelay=[35ms], MaxDelay=[74ms], AvgDelay=[62ms], minRTT[126ms], maxRTT[244ms], avgRTT[173ms] +(I) [12:47:01.833] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=38fc3f43f1560cccd105f16eb10afac36ae643903e48ce8b8f92912a3a0bfb4f +(I) [12:47:06.503] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=700ee2cbc8ea79e2d0cba32cd9def26eaf54ac5d1415b26f6e39a2961646d107 +(I) [12:47:07.715] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=031632303c2d1672f913a0df555e5f6c428ebdc199614561ba4fc6a662841109 +(I) [12:47:17.465] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=76df9c8f7cd6aae113a3a3f7660c74b3d2edcdbc2b7baa6388238dd013ff8658 +(I) [12:47:19.844] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d1d1812633dc69fa9dcd9aa27c08a7cd1ad8143a8b27133af74fde59d0773088 +(I) [12:47:21.007] [000022800]: Local user framerate is [95.849998] +(I) [12:47:21.007] [000022800]: Local user MinDelay=[35ms], MaxDelay=[84ms], AvgDelay=[61ms], minRTT[110ms], maxRTT[296ms], avgRTT[173ms] +(I) [12:47:29.807] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2e542d5d8ca5361867da7d4de1f8a29f79ed70ea6d6af60d60513d2b81ee4e2d +(I) [12:47:31.004] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=189/0, mdat=328/656, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=21/6, lb_c=0/0, cast=0/0, cdat=174/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:47:42.000] [000022800]: Local user framerate is [102.439751] +(I) [12:47:42.000] [000022800]: Local user MinDelay=[35ms], MaxDelay=[84ms], AvgDelay=[60ms], minRTT[110ms], maxRTT[296ms], avgRTT[173ms] +(I) [12:47:46.917] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fc1ca5c4cbf9f8e139ba1699cca277dbb7f36078a45a10c0f15b406651db55c4 +(I) [12:47:51.002] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=90/0, mdat=160/320, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=9/2, lb_c=0/0, cast=0/0, cdat=81/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:47:51.149] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=acda420e8070cadfebc11e0d4120d94e8555b05ffefcd14cc01027debbe911f3 +(I) [12:47:54.449] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=00db171f9a3f408e5091f1507629a0e85b701b9142a6f0df94a0e0bf4ade483e +(I) [12:47:56.902] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a17465d4c67729afdd6f644976e37bbebcd493be0fbed65966367df5d932f307 +(I) [12:48:03.005] [000022800]: Local user framerate is [101.384789] +(I) [12:48:03.005] [000022800]: Local user MinDelay=[47ms], MaxDelay=[175ms], AvgDelay=[83ms], minRTT[120ms], maxRTT[298ms], avgRTT[160ms] +(I) [12:48:04.913] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4fda55015c74564361517b8ef191b3d046c9026360a8e36d4df18e6180e658ab +(I) [12:48:09.468] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cd6190381c4b9564441f047136749c11a946ec7d6666f81c995bf91a9634ba90 +(I) [12:48:16.691] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c2a080dd7794e80c20e0ac351d23199cfa794091d834e2de833984a028f3b7e6 +(I) [12:48:20.755] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=db0c1e7f304c509116b8ff681f97b524ff9a8a920369ce5f2a7b00bffa7a1864 +(I) [12:48:24.004] [000022800]: Local user framerate is [101.024742] +(I) [12:48:24.004] [000022800]: Local user MinDelay=[47ms], MaxDelay=[175ms], AvgDelay=[85ms], minRTT[120ms], maxRTT[298ms], avgRTT[161ms] +(I) [12:48:24.330] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=01036247a88fcca1f99f49d6f56eefab4939b7548f953bc51bb9ee91b403fa42 +(I) [12:48:32.008] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=185/0, mdat=327/654, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=22/6, lb_c=0/0, cast=0/0, cdat=169/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:48:37.225] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6a31433e8e9addb9fd2bfdf84374e56c734c9ca60157496e51931949bf5ded02 +(I) [12:48:43.666] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=aa976c0df6e25d3415184339f3f17d619f64b7767b01615d3c6b7065c0fecefc +(I) [12:48:45.011] [000022800]: Local user framerate is [99.030190] +(I) [12:48:45.011] [000022800]: Local user MinDelay=[71ms], MaxDelay=[87ms], AvgDelay=[78ms], minRTT[119ms], maxRTT[215ms], avgRTT[161ms] +(I) [12:48:49.413] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fa9d6d24e0d1f5368e258292f84d26a1f0fb907d22ef1d862f6c0a40d33b9cab +(I) [12:48:52.010] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=106/0, mdat=160/320, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=9/2, lb_c=0/0, cast=0/0, cdat=89/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:48:57.024] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=520a08dbfc9ec023f1f0f892f396b44aa698a9ff348df1e390c0392bbd9176f7 +(I) [12:49:04.021] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a9514a664b259632580cd8be88199ee839297bd8cb9ff224d737ec1b3a59e41d +(I) [12:49:06.003] [000022800]: Local user framerate is [99.420174] +(I) [12:49:06.003] [000022800]: Local user MinDelay=[63ms], MaxDelay=[89ms], AvgDelay=[76ms], minRTT[118ms], maxRTT[239ms], avgRTT[162ms] +(I) [12:49:09.767] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b26a91da9018de91df2aca5879269949271f7750ed6a89185cd1bc27e5726555 +(I) [12:49:18.950] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=677c7a05c1ddc9a3e0da9c6b336d9876b712a7b13495ec489715e113b4a40af0 +(I) [12:49:25.071] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=93bcb5053118629299611dd46285d18e120db6051535d38818be298b39ea9cd1 +(I) [12:49:27.010] [000022800]: Local user framerate is [104.997498] +(I) [12:49:27.010] [000022800]: Local user MinDelay=[59ms], MaxDelay=[89ms], AvgDelay=[73ms], minRTT[109ms], maxRTT[239ms], avgRTT[163ms] +(I) [12:49:32.651] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b46f6bd74fe93776b07875195f87bce3b9131315fbf788e156c557311054fc52 +(I) [12:49:33.002] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=187/0, mdat=328/656, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=21/6, lb_c=0/0, cast=0/0, cdat=169/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:49:39.483] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8e751c0b22016864520db008449768ab43434ddbfcedc880a960b53945cf460e +(I) [12:49:47.253] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6037bb1336feac43e202a6211334fb67422368118ab065f5eab349073784dad6 +(I) [12:49:48.012] [000022800]: Local user framerate is [106.699997] +(I) [12:49:48.012] [000022800]: Local user MinDelay=[49ms], MaxDelay=[69ms], AvgDelay=[61ms], minRTT[121ms], maxRTT[220ms], avgRTT[167ms] +(I) [12:49:50.971] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=609092363105755e446fc241260d6ae6eec34c66d40777c6448fd110d07a1e56 +(I) [12:49:53.009] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=98/0, mdat=160/320, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=10/3, lb_c=0/0, cast=0/0, cdat=83/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:49:55.186] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1c9d57a215e9d91e3082ca75e870b820cd54f5c42c620311c1b7bbf54a6d6bac +(I) [12:50:00.068] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fcb67763a36c20318a0c5a46ea3554eb05a0dd3e7c3bbe5f44a41441787f35ed +(I) [12:50:09.020] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0bf5bfd92139f8db8b5e2dfbc6910a526d39f1caf4ce06482d7da969e28988f6 +(I) [12:50:09.021] [000022800]: Local user framerate is [105.699997] +(I) [12:50:09.021] [000022800]: Local user MinDelay=[44ms], MaxDelay=[69ms], AvgDelay=[58ms], minRTT[119ms], maxRTT[233ms], avgRTT[172ms] +(I) [12:50:22.981] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b5f0420640c14e3c280299d241ff2106bae57600618104b6e5f9bd2cd23c0220 +(I) [12:50:26.540] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=09d12b9434021335d07ccbda0e6724fc6774da60ebe07ffbad1231588f2473c8 +(I) [12:50:30.019] [000022800]: Local user framerate is [106.767967] +(I) [12:50:30.019] [000022800]: Local user MinDelay=[44ms], MaxDelay=[72ms], AvgDelay=[57ms], minRTT[116ms], maxRTT[258ms], avgRTT[175ms] +(I) [12:50:31.311] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fa6ccb6737cee0410c14a4b6aa8fc404176a18dc4068ed2f0087e0d46414a7b9 +(I) [12:50:34.006] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=189/0, mdat=328/656, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=20/5, lb_c=0/0, cast=0/0, cdat=167/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:50:47.908] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=bdeb3383026dbb5c7f64879057bf6c3b8d5e963b4e121a07e75d3a0b456f9780 +(I) [12:50:51.011] [000022800]: Local user framerate is [109.767067] +(I) [12:50:51.011] [000022800]: Local user MinDelay=[42ms], MaxDelay=[64ms], AvgDelay=[53ms], minRTT[121ms], maxRTT[243ms], avgRTT[178ms] +(I) [12:50:54.005] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=87/0, mdat=160/320, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=10/3, lb_c=0/0, cast=0/0, cdat=80/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:50:58.962] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cae053f36985e9bc5244aec138658c89ec952240a64d6a83f604075133201d6a +(I) [12:51:12.005] [000022800]: Local user framerate is [106.652000] +(I) [12:51:12.005] [000022800]: Local user MinDelay=[41ms], MaxDelay=[68ms], AvgDelay=[53ms], minRTT[121ms], maxRTT[243ms], avgRTT[180ms] +(I) [12:51:18.019] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a51c2909e3edf2a9f5ea8cb76c52f1b490f5980afd72f82c14142f404a387c6f +(I) [12:51:25.326] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e93e7010d1dd7e55f528dfe561b690d9ff95775b11234c9b51b1967ab6eb73be +(E) [12:51:26.987] [000022800]: TelemetryRow::addString : Key: (ability_name), Value (35) is larger than Column (32) +(I) [12:51:33.000] [000022800]: Local user framerate is [99.140511] +(I) [12:51:33.000] [000022800]: Local user MinDelay=[41ms], MaxDelay=[68ms], AvgDelay=[54ms], minRTT[121ms], maxRTT[243ms], avgRTT[178ms] +(I) [12:51:35.001] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=184/0, mdat=328/656, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=21/5, lb_c=0/0, cast=0/0, cdat=168/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:51:38.305] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fc03b113458b71315db71eb55a64fcd63aacfafd8f9bb45a712fd15b763dcf03 +(I) [12:51:42.830] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3294a255da7638234d2fd1d37358ecf6bcc88a6be7f24ac37e1d0d59747734c7 +(I) [12:51:53.302] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6891439e92f90dabb343a93411997d85a24fa5d2ea9ce8ac971b1137b3b80e6f +(I) [12:51:54.001] [000022800]: Local user framerate is [96.940300] +(I) [12:51:54.001] [000022800]: Local user MinDelay=[48ms], MaxDelay=[73ms], AvgDelay=[59ms], minRTT[139ms], maxRTT[302ms], avgRTT[178ms] +(I) [12:51:55.003] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=96/0, mdat=160/320, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=9/3, lb_c=0/0, cast=0/0, cdat=86/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:51:56.115] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=841cbd7f5c4e3e04c305990fe3fadaff6956d1c9a47e896c3a7cd08a546024d4 +(I) [12:51:58.220] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=433f4c8a8e882347aee6f4304bee7266a5b9d943b93f5f20f1b5a3d867ecab16 +(I) [12:52:02.225] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5a6869a69aa44150cf67fd398c7487f527e5c90a00ac443e24cc4badab882402 +(I) [12:52:08.097] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8ac65c1f17f9179e6fe32dce97ce043890b98a6a23c207c8daba6368fc087085 +(I) [12:52:13.468] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=534893cef4e80bc1e852d4b57b5e503d3d550732b10324d97139777b7cb62b40 +(I) [12:52:15.008] [000022800]: Local user framerate is [100.159927] +(I) [12:52:15.008] [000022800]: Local user MinDelay=[43ms], MaxDelay=[73ms], AvgDelay=[59ms], minRTT[118ms], maxRTT[302ms], avgRTT[177ms] +(I) [12:52:23.643] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7cda38041a7866e6f42a7ae86ed6a50724a9912ad8d9c6165b8d55e7738d341d +(I) [12:52:36.001] [000022800]: Local user framerate is [101.204453] +(I) [12:52:36.001] [000022800]: Local user MinDelay=[43ms], MaxDelay=[73ms], AvgDelay=[59ms], minRTT[117ms], maxRTT[302ms], avgRTT[175ms] +(I) [12:52:36.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=155/0, mdat=328/656, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=21/5, lb_c=0/0, cast=0/0, cdat=135/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:52:38.852] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d84a01b13659ee0c347bc0ab40d4ca85ab2498a60e3f223390ec7d2380aaad68 +(I) [12:52:44.858] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f4b4777b9c76c306f37320deff571af35a5e37e5624e41f522a12f21e3892b70 +(I) [12:52:53.338] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=dd429ac33e08dd4d1d92ed624116d89552046d18470fff846f2bf3f8af3f6e89 +(I) [12:52:56.006] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=83/0, mdat=160/320, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=10/3, lb_c=0/0, cast=0/0, cdat=76/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:52:57.001] [000022800]: Local user framerate is [105.507790] +(I) [12:52:57.001] [000022800]: Local user MinDelay=[45ms], MaxDelay=[71ms], AvgDelay=[56ms], minRTT[123ms], maxRTT[231ms], avgRTT[179ms] +(I) [12:52:59.743] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=021ba5fec12d40b44e1ddd6be292db610ad27a6a70174da7ca2433b9b2eac8eb +(I) [12:53:02.503] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d7b3f850bb22bbdc6a720a9e48b63ae68caf980601bd4cf481d3ad755187fd95 +(I) [12:53:09.072] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=84494f66c4579c4a6ca1571788d57d6cd2f07974a1c1a00c585908c01b5241f7 +(I) [12:53:18.002] [000022800]: Local user framerate is [105.750000] +(I) [12:53:18.002] [000022800]: Local user MinDelay=[41ms], MaxDelay=[71ms], AvgDelay=[56ms], minRTT[120ms], maxRTT[231ms], avgRTT[177ms] +(I) [12:53:21.743] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fe45a820f39d214c90f916d9d3a17c567844968301f069315205974a018fe497 +(I) [12:53:25.724] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=525c888a67e67f60bb96a0e44729ed837393640b8eda53572ca27360d9675242 +(I) [12:53:27.174] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e31afd6b8756adbbb5e923e21c36fee9386f1e2cf0deb20ada753ce883d757e4 +(I) [12:53:29.273] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fc1913faaecb412d96fc61ae211dc4194e322c179ce684bfd5474c167e58d047 +(I) [12:53:37.008] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=159/0, mdat=327/654, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=21/5, lb_c=0/0, cast=0/0, cdat=142/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:53:39.002] [000022800]: Local user framerate is [110.238968] +(I) [12:53:39.002] [000022800]: Local user MinDelay=[39ms], MaxDelay=[71ms], AvgDelay=[55ms], minRTT[114ms], maxRTT[241ms], avgRTT[178ms] +(I) [12:53:45.523] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=98511bbe8eb3e5e4af2d44e5952ed25248b831a290916f4e0a6686a527da5adf +(I) [12:53:52.613] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=efbe5ac689dea9d84c818619a88fadb4659b72ff6a94e6b9e03cddd26392dd1c +(I) [12:53:57.008] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=78/0, mdat=160/320, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=9/3, lb_c=0/0, cast=0/0, cdat=69/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:53:59.654] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b371003dcf6edcfd9ce004d5b9ff6c0b14a2634fbf107385c969ffc2ad74013f +(I) [12:54:00.003] [000022800]: Local user framerate is [106.750000] +(I) [12:54:00.003] [000022800]: Local user MinDelay=[46ms], MaxDelay=[70ms], AvgDelay=[56ms], minRTT[117ms], maxRTT[236ms], avgRTT[176ms] +(I) [12:54:04.270] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0ba590d46db79343660d7d62625cc03e193544bb5410d2c7cea2838b4602494b +(I) [12:54:07.412] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=df8fd04f7d2fd19bd3a7bd7c28ed725c31bac3cc301ec812f6fe37b112218924 +(I) [12:54:13.661] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5a34ce4a18ca8ff5433f742b2972b4f322733a212e8927626f80c6023ea6a253 +(I) [12:54:21.020] [000022800]: Local user framerate is [96.730644] +(I) [12:54:21.020] [000022800]: Local user MinDelay=[43ms], MaxDelay=[70ms], AvgDelay=[56ms], minRTT[117ms], maxRTT[236ms], avgRTT[173ms] +(I) [12:54:28.159] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fde12f52599125ca04110ba3ee5795209ca7d5a078073e5025e9031e5ab10f92 +(I) [12:54:38.009] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=145/0, mdat=328/656, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=22/6, lb_c=0/0, cast=0/0, cdat=134/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:54:41.912] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8316d677ae233ea7fba18d3e8f4ee69eea08cae2f6225fa01193dd2bf3941c95 +(I) [12:54:42.019] [000022800]: Local user framerate is [93.931206] +(I) [12:54:42.019] [000022800]: Local user MinDelay=[37ms], MaxDelay=[70ms], AvgDelay=[57ms], minRTT[117ms], maxRTT[238ms], avgRTT[173ms] +(I) [12:54:53.351] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=beebfa38da57821f829364d574acbae6af3dfffc1b33f078cb1dacdedd0f5b7e +(I) [12:54:55.922] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ddf497d22978c0937808b00ec914a70ce24626cdf4340c5a0bca64d5c217b8a9 +(I) [12:54:58.005] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=73/0, mdat=160/320, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=8/2, lb_c=0/0, cast=0/0, cdat=68/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:55:03.009] [000022800]: Local user framerate is [103.889610] +(I) [12:55:03.009] [000022800]: Local user MinDelay=[28ms], MaxDelay=[66ms], AvgDelay=[53ms], minRTT[151ms], maxRTT[266ms], avgRTT[179ms] +(I) [12:55:15.011] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1e8e2ff5626bedf13d72f40bb3795b81a75de374c7a428684989ddc19acb70e7 +(I) [12:55:22.881] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=865103571ef8f378e5d60b07fe5e54a7544719657f05ea46de046b4f1a108a1b +(I) [12:55:24.001] [000022800]: Local user framerate is [108.667397] +(I) [12:55:24.001] [000022800]: Local user MinDelay=[28ms], MaxDelay=[74ms], AvgDelay=[54ms], minRTT[123ms], maxRTT[266ms], avgRTT[178ms] +(I) [12:55:34.261] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f05837dd4d6683dedb7a96a6f6a7cd87ff9a6429d8a13463362a557b9623031d +(I) [12:55:36.585] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f41646cd49dfb3d45bf37eca62e80f6d89cf7fb193b94a84e00f11b5b9abb5c7 +(I) [12:55:39.003] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=174/0, mdat=328/656, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=22/6, lb_c=0/0, cast=0/0, cdat=157/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:55:42.843] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=97c7736cc451917573f2be79456e2918da38c6af9524f5ec5465e356da53adfa +(I) [12:55:45.003] [000022800]: Local user framerate is [106.623337] +(I) [12:55:45.003] [000022800]: Local user MinDelay=[47ms], MaxDelay=[64ms], AvgDelay=[55ms], minRTT[124ms], maxRTT[199ms], avgRTT[172ms] +(I) [12:55:48.491] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fa64e6ebc4ac34c64856fe7511322c7356662279b52ae834ae2d24d4f5601136 +(I) [12:55:54.968] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5535106bcf216910415ec6fad3fa1423dfcd7af501e45565079f237b262b8179 +(I) [12:55:59.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=111/0, mdat=160/320, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=10/2, lb_c=0/0, cast=0/0, cdat=98/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:56:03.250] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=215c619c5ea87aa09b33f241699aa89b5022832c15bfeb008ac1692ffa403765 +(I) [12:56:06.001] [000022800]: Local user framerate is [100.954567] +(I) [12:56:06.001] [000022800]: Local user MinDelay=[38ms], MaxDelay=[75ms], AvgDelay=[56ms], minRTT[112ms], maxRTT[297ms], avgRTT[174ms] +(I) [12:56:11.880] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=203c6ddb6dea5db5f26f3bf4a4f056a2befb8ed1cd043b1f86f54470fa57fd37 +(I) [12:56:21.887] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=90eab1fa4ba40037940acb029b83daa10a79cf206b4a1d0f607429b3538e39b2 +(I) [12:56:27.001] [000022800]: Local user framerate is [97.199997] +(I) [12:56:27.001] [000022800]: Local user MinDelay=[38ms], MaxDelay=[76ms], AvgDelay=[57ms], minRTT[112ms], maxRTT[297ms], avgRTT[174ms] +(I) [12:56:31.124] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6ca09f7fe70403aec8d0850e2e8425a5daba976796e8a8f04a9b69701e34e538 +(I) [12:56:40.008] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=185/0, mdat=328/656, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=21/6, lb_c=0/0, cast=0/0, cdat=167/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:56:40.023] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f5f205d271e3003f98fceaf0de48f7e9d72d0b6a85a65d2224ad3d457c005c0f +(I) [12:56:42.753] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a2876cd4385bd94e546d333e6453b35595ea0968f45914e45e5ae7cc4bb316a8 +(I) [12:56:48.003] [000022800]: Local user framerate is [97.695107] +(I) [12:56:48.003] [000022800]: Local user MinDelay=[43ms], MaxDelay=[86ms], AvgDelay=[58ms], minRTT[135ms], maxRTT[237ms], avgRTT[173ms] +(I) [12:56:49.772] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=eff1430266d48c60a01344e16a4448caf811442b6b73ef3546d8811a48e6dc2e +(I) [12:56:54.190] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e217687904193c3f934b9455459abfe8f89db6c5dacdfb0dde685221b8224e66 +(I) [12:57:00.009] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=77/0, mdat=160/320, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=10/3, lb_c=0/0, cast=0/0, cdat=71/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:57:09.010] [000022800]: Local user framerate is [97.775551] +(I) [12:57:09.010] [000022800]: Local user MinDelay=[43ms], MaxDelay=[86ms], AvgDelay=[58ms], minRTT[116ms], maxRTT[238ms], avgRTT[173ms] +(I) [12:57:10.449] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=494827d923dfc4d86ba6454474be5bb19b2f61e3014b18d7776dc30f9a5c92fe +(I) [12:57:18.742] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=caecb8db8e918c1aed9096f62581bba74d583721f8811d243b6b7b914912f607 +(I) [12:57:21.787] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ebf9ec1030ecedff4e381e5069886f8d937d9f0f9929538ecf37b27586390662 +(I) [12:57:29.215] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6c5f99ea4288d415d01160dc8212ed71763d6ace0448f7817c31e3ceef591263 +(I) [12:57:30.010] [000022800]: Local user framerate is [104.684296] +(I) [12:57:30.010] [000022800]: Local user MinDelay=[43ms], MaxDelay=[86ms], AvgDelay=[58ms], minRTT[109ms], maxRTT[238ms], avgRTT[173ms] +(I) [12:57:35.062] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4038bad61d3df4ed6f9e81be30bd5670e9e942570aefd4ccee099fe4fd48e953 +(I) [12:57:40.765] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=01d05cfd83d4e6281af935b96c0ac65387efaac2c8d90109a26a597ecd762113 +(I) [12:57:41.003] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=187/0, mdat=327/654, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=20/5, lb_c=0/0, cast=0/0, cdat=161/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:57:43.241] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e7639e348073ab6663fa48fbf8ee04f5331f9330f600e3e8f65cbb12c05929c9 +(I) [12:57:46.303] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e7f57fbcb3f3592cee6c7e2ca4300cc6e99b1cb3b264cec9c12486e6c8a594bd +(I) [12:57:47.991] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0763855f68cc4fdd65f58341b968eebf1bb6b57402f47ad47a34f01fa56b45f8 +(I) [12:57:50.137] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f54ea48fc41476446c477c25305d830401fbb5620bcdd7394b7325fa38731e28 +(I) [12:57:51.005] [000022800]: Local user framerate is [102.269318] +(I) [12:57:51.005] [000022800]: Local user MinDelay=[46ms], MaxDelay=[71ms], AvgDelay=[57ms], minRTT[119ms], maxRTT[249ms], avgRTT[181ms] +(I) [12:57:53.994] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ac98bd431dafcac16b4cd64cc038a04bff81a48cb0d663af960119511355f667 +(I) [12:57:56.882] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b11d7d60b4b4b304381d1c6180ac1d767b196a2e469b2da9b6ecbc91f6cadbb7 +(I) [12:57:59.953] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a0684b6b9669710b6afa6af86e317fbe4060199b929c404e61839833f22b0532 +(I) [12:58:01.006] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=101/0, mdat=160/320, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=10/3, lb_c=0/0, cast=0/0, cdat=92/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:58:05.575] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=402a4d0ce89c814dedf8731e1e624bd8f59949a6ef1140974311d7041f550a5a +(I) [12:58:07.895] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=86c1c7a1aa5de0ba5241fc1af74d511ecc2da66f95f8833cdd87bc954cdac428 +(I) [12:58:08.521] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2f0ea4c741792a343db614ea69985483dbac74f96f0e7245a5781890583df7c6 +(I) [12:58:09.022] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ca8fd7c8fe7a540f2ba844435556cbd628e947944b3609e85c11b25a3f908674 +(I) [12:58:10.391] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ba7e39924d359cef7b9b1be27282775e5da10f431d77ff17e28c1c8a8973a2df +(I) [12:58:11.144] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7c698ef80efca7e753c3b412dfb5cef4297b142d0b36611fc2a43e1cd91d0d10 +(I) [12:58:12.004] [000022800]: Local user framerate is [97.920624] +(I) [12:58:12.004] [000022800]: Local user MinDelay=[35ms], MaxDelay=[73ms], AvgDelay=[58ms], minRTT[108ms], maxRTT[249ms], avgRTT[176ms] +(I) [12:58:15.956] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f09e8b4cf90898120e2fcc5f0a6e1ea9b865458cbe0f3aa158faed9b8ce4249a +(I) [12:58:33.011] [000022800]: Local user framerate is [99.935005] +(I) [12:58:33.011] [000022800]: Local user MinDelay=[35ms], MaxDelay=[80ms], AvgDelay=[59ms], minRTT[108ms], maxRTT[249ms], avgRTT[174ms] +(I) [12:58:34.183] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7ceb088d9452a18fb136e06b9c9212a102832d0c6db40d9357affba9b17fa740 +(I) [12:58:37.905] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=380406c6d45744810090030c9fd282ccb6c754e170e0d20faafcf67ab8d15ef6 +(I) [12:58:38.410] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c783d075e4ac8658c98550d799219bbfaae0be74375558c3ff221a2f4db40aef +(I) [12:58:42.005] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=207/0, mdat=328/656, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=20/5, lb_c=0/0, cast=0/0, cdat=178/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:58:49.592] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=949b8e945d984de147d8059b6e73c75450fc700534b856bc070a891f0acbdd92 +(I) [12:58:54.015] [000022800]: Local user framerate is [97.710907] +(I) [12:58:54.015] [000022800]: Local user MinDelay=[48ms], MaxDelay=[74ms], AvgDelay=[60ms], minRTT[117ms], maxRTT[234ms], avgRTT[170ms] +(I) [12:58:55.360] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1945e1069dd43ad730623abcb21b34ae75a2e3a799b5ea319f90b9236f7c3c05 +(I) [12:59:02.001] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=107/0, mdat=160/320, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=11/3, lb_c=0/0, cast=0/0, cdat=85/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:59:05.048] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=868cc351e4c4e4626d746fc42cbb5cbe3354645f6891575911494fb04d5005aa +(I) [12:59:05.887] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=644ab3e58c6032030bd9a73ce5b2fdd9a3ae57ae489fa28aea781f8fbd005ab0 +(I) [12:59:11.359] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=51a46de7d77fff319bb2dd3a14e012fa2123b7cdf6bb5526effb18b4828eafaf +(I) [12:59:15.006] [000022800]: Local user framerate is [93.136032] +(I) [12:59:15.006] [000022800]: Local user MinDelay=[46ms], MaxDelay=[81ms], AvgDelay=[60ms], minRTT[117ms], maxRTT[238ms], avgRTT[172ms] +(I) [12:59:23.588] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=baca457ea84646ec0ca0c4e96b1f00fec8c78cf0bee04752427282e10c39d974 +(I) [12:59:28.269] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3d5357b813bc482d36e5693d8daf426d2190974f90f63b7122d2a3953da9eb94 +(I) [12:59:36.009] [000022800]: Local user framerate is [87.900002] +(I) [12:59:36.009] [000022800]: Local user MinDelay=[44ms], MaxDelay=[81ms], AvgDelay=[60ms], minRTT[111ms], maxRTT[272ms], avgRTT[173ms] +(I) [12:59:36.103] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=481c1b749e5a3d34e118e5e7f7137f224371236e02ed611b073adb14322fd807 +(I) [12:59:43.006] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=175/0, mdat=328/656, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=20/5, lb_c=0/0, cast=0/0, cdat=150/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [12:59:44.960] [000022800]: Sent match chat message { gg } +(I) [12:59:45.455] [000022800]: Response received after sending match chat message { gg } +(I) [12:59:47.372] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b7940fb3f583e7e3da76396663e8c7455c35eb5388689ee8d69074272c464274 +(I) [12:59:50.041] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ba72ceb9d19f45b32088ef1e6561093dc24b6659c8a8ace3fb0591bac291fe09 +(I) [12:59:53.102] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cdbaa35a6997bdb2f7e9cac069c54d673cf7bbd2690fc9d4749242b4a528c2de +(I) [12:59:55.214] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3daddca26152715f785b41acd5f33f9cedcddd507ac54dac3ea96970e1059443 +(I) [12:59:57.004] [000022800]: Local user framerate is [95.385689] +(I) [12:59:57.004] [000022800]: Local user MinDelay=[48ms], MaxDelay=[71ms], AvgDelay=[58ms], minRTT[120ms], maxRTT[304ms], avgRTT[181ms] +(I) [12:59:58.025] [000023200]: Read bytes [0,"MatchReceivedChatMessage",3264,[44204,"g","g",2,5863801]] +(I) [12:59:58.037] [000022800]: Received chat message { g } +(I) [12:59:58.037] [000022800]: Starting FilterChatJob for message { g } +(I) [12:59:58.078] [000022800]: Posting chat event from FilterChatJob for message { g } +(I) [12:59:58.249] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:59:58.249] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:59:58.249] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:59:58.249] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:59:58.249] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:59:58.249] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:59:58.249] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:59:58.249] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:59:58.249] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:59:58.249] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:59:58.249] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:59:58.249] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:59:58.249] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:59:58.249] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:59:58.249] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:59:58.249] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:59:58.249] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:59:58.249] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:59:58.249] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:59:58.249] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:59:58.249] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:59:58.249] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:59:58.249] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:59:58.249] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:59:58.249] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:59:58.249] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:59:58.249] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:59:58.598] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:59:58.598] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:59:58.598] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:59:58.598] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:59:58.598] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:59:58.598] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [12:59:58.598] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:00:01.910] [000022800]: MOD -- Game Over at frame 15984 +(I) [13:00:02.014] [000022800]: Report sent for profileID[44204] -> race=[198437], result=[1], XP Gain=[15653] +(I) [13:00:02.014] [000022800]: Report sent for profileID[3264] -> race=[203852], result=[0], XP Gain=[17433] +(I) [13:00:02.033] [000022800]: Party::SetStatus - S_CONFIGURING +(I) [13:00:02.048] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d07b7be13314ebf7a1a4914f97b2051aa8c1b76390e6f90049ec3cece8b05627 +(I) [13:00:02.048] [000022800]: Sending matchinfo change #13 +(E) [13:00:02.100] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:00:02.652] [000022800]: MPMatchSetup::OnMatchEvent - MET_ReportResults - result [0] +(I) [13:00:02.652] [000022800]: GameObjController - OnMatchEvent: event type 9 +(I) [13:00:02.888] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=40281a7bdd1f8e50de22fcbd5d6eeba83b32e0f9c3a22f6339e5f091cfbb1807 +(I) [13:00:03.010] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=75/2, mdat=153/306, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=1/2, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=1/1, lb_p=10/3, lb_c=0/0, cast=0/0, cdat=65/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=1/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:00:03.392] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1599a274af5a3ea9527f37f48cfde53c87c613b61f674097406c28de69a17970 +(I) [13:00:03.899] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b2b62ae4a9fea89e6c6f9afcd2209decb9013fc5e7aa033b95a09699e974fc94 +(I) [13:00:03.982] [000023200]: Read bytes [0,"AvatarStatsUpdatedMessage",3264,[[[4,3264,63,"",1680519603]]]] +(I) [13:00:03.982] [000023200]: Read bytes [0,"AvatarStatsUpdatedMessage",3264,[[[6,3264,81846,"",1680519603]]]] +(I) [13:00:03.982] [000023200]: Read bytes [0,"AvatarStatsUpdatedMessage",3264,[[[14,3264,12872,"",1680519603]]]] +(I) [13:00:03.982] [000023200]: Read bytes [0,"AvatarUpdateMessage",3264,[[2696,3264,"/steam/76561198023526153","","Wolfsindis","",15990,2211,2211,2074389,null,"76561198023526153",3,[]]]] +(I) [13:00:03.982] [000023200]: Read bytes [0,"AvatarUpdateMessage",3264,[[2407,44204,"/steam/76561197994172925","","SLush","",100781,2491,2491,2074390,null,"76561197994172925",3,[]]]] +(I) [13:00:03.982] [000023200]: Read bytes [0,"GameResultNotificationMessage",3264,[[[3264,20,203852,1,[0],15990,[["unitprod",65],["vvetrank",12],["cabil",4],["dmgdone",11097],["plost",29],["svetrank",7],["reqmax",0],["cpearn",5],["reqspnt",0],["powearn",0],["blost",0],["elitekill",9],["edeaths",117],["structdmg",44],["pcap",35],["inactperiod",31],["lowintperiod",0],["precap",27],["sqkill",12],["popmax",0],["powspnt",0],["sqprod",18],["bprod",9],["svetxp",19200],["vabnd",0],["addonkill",80],["totalcmds",3117],["gammaspnt",0],["vkill",8],["objdmh",0],["abil",111],["sqlost",13],["vcap",0],["vlost",3],["gt",1998],["upg",144],["vvetxp",11800],["reqearn",0],["vp1",0],["vp0",0],["erein",68],["cflags",0],["wpnpu",0],["ekills",90],["powmax",0],["vprod",4]],0,10,[],null,[],[],[],[],[],[]],[44204,20,198437,0,[0],100781,[["unitprod",75],["vvetrank",21],["cabil",11],["dmgdone",15063],["plost",27],["svetrank",0],["reqmax",0],["cpearn",10],["reqspnt",0],["powearn",0],["blost",4],["elitekill",-1],["edeaths",93],["structdmg",0],["pcap",37],["inactperiod",18],["lowintperiod",0],["precap",29],["sqkill",13],["popmax",0],["powspnt",0],["sqprod",24],["bprod",9],["svetxp",0],["vabnd",0],["addonkill",114],["totalcmds",3253],["gammaspnt",0],["vkill",3],["objdmh",0],["abil",55],["sqlost",12],["vcap",0],["vlost",8],["gt",1998],["upg",84],["vvetxp",32000],["reqearn",0],["vp1",0],["vp0",0],["erein",64],["cflags",0],["wpnpu",1],["ekills",113],["powmax",0],["vprod",11]],0,10,[],null,[],[],[],[],[],[]]],[[15990,2130257,8,4,-1,0,0,655,2262,293,1076,7,1144,1680519603],[100781,2130259,208,147,2,0,1,99,2434,15,631,11,1346,1680519603]],[[4,3264,63,"",1680449654],[6,3264,81846,"",1680449654],[14,3264,12872,"",1680177655],[10,44204,358,"",1680515488],[11,44204,211,"",1680515488],[12,44204,410444,"",1680515488],[16,44204,406877,"",1680515488]],5863801,"",[]]] +(I) [13:00:03.984] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:00:03.984] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:00:03.984] [000022800]: RNT_StatsUpdate: Loss notification, profileID 3264, race =203852, level=7, ranking=655 +(I) [13:00:03.984] [000022800]: RNT_StatsUpdate: Win notification, profileID 44204, race =198437, level=11, ranking=99 +(I) [13:00:04.401] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3ba7ff0ff2a8e85437dc88cc82cb714ac155f283c3dfa5b6a3b98ebd0c609e3c +(I) [13:00:05.820] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:00:05.840] [000022800]: GetPartyStatsByID found 1 teams for user ID 3264 +(I) [13:00:06.084] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:00:06.084] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:00:22.027] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fcc368c6bb49c4f91727f87e766ee10115b8670a0653cba21eebcc7d7ec11228 +(I) [13:00:44.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=13/26, Thdr=0/0, Peer=13/26, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=13/13, lb_p=21/5, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:00:45.018] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=bfbda5e0d8f549a3b12e16f8cb8025b0eed6de8fc9fd0f33de95d0f5ad6b8331 +(I) [13:01:04.006] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=7/14, Thdr=0/0, Peer=7/14, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=7/7, lb_p=10/3, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:01:09.018] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9faf40250fcc3b0be9ddc20e41349cd7e6ff1be0b32dea9dc70474225f290dfa +(I) [13:01:45.001] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=14/28, Thdr=0/0, Peer=14/28, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=14/14, lb_p=22/6, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:02:05.009] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=6/12, Thdr=0/0, Peer=6/12, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=6/6, lb_p=10/2, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:02:46.009] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=14/28, Thdr=0/0, Peer=14/28, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=14/14, lb_p=21/6, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:02:52.855] [000022800]: GameApp::SetTargetState : new (UnloadedGame) old (Uninitialized) +(I) [13:02:52.871] [000022800]: GameApp::SetState : new (UnloadingGame) old (Game) +(I) [13:02:53.887] [000022800]: GameObj::ShutdownGameObj +(I) [13:02:53.887] [000022800]: GetMaxFrameTimeFromProfile: players=2 expected FPS=100.000000, bars=0, max avg=0.000, sd=0.000, 0 samples = +(I) [13:02:53.887] [000022800]: PerformanceRecorder::EndRecording - game size=2, max average=0.012668, worst frame=0.010000 +(I) [13:02:53.887] [000022800]: Recording: No [2 players] + +(I) [13:02:53.887] [000022800]: Max/Avg: 0.01, 0.01 sec (fps=78.94, 102.04) (108 samples) + +(I) [13:02:53.887] [000022800]: Bars: 0 + +(I) [13:02:53.899] [000022800]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_seconds_played] +(I) [13:02:53.899] [000022800]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_units_produced] +(I) [13:02:53.899] [000022800]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_units_killed] +(I) [13:02:53.899] [000022800]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_units_lost] +(I) [13:02:53.904] [000022800]: StatArtWarningsCount 0 +(I) [13:02:53.904] [000022800]: StatDataWarningsCount 0 +(I) [13:02:53.935] [000022800]: SIM -- m_bInDestroyAll is true, When entities are being destroyed, cannot create new entities w_ammo_box_ak +(I) [13:02:53.951] [000022800]: SIM -- m_bInDestroyAll is true, When entities are being destroyed, cannot create new entities w_76mm_shell +(I) [13:02:53.951] [000022800]: SIM -- m_bInDestroyAll is true, When entities are being destroyed, cannot create new entities w_76mm_shell +(I) [13:02:54.393] [000022800]: GameApp::SetState : new (UnloadedGame) old (UnloadingGame) +(I) [13:02:54.393] [000022800]: GameApp::SetTargetState : new (Uninitialized) old (UnloadedGame) +(I) [13:02:54.404] [000022800]: SessionID : 597979 - Disconnect called with reasonID 1000 - MatchSetup::Disconnect +(I) [13:02:54.404] [000022800]: MatchSetupManager: Removed queued match [cliff_crossing_2p] Queue is now [0] +(I) [13:02:54.404] [000022800]: SessionID : 597979 - Disconnect called with reasonID 1000 - MatchSetup::Disconnect +(I) [13:02:54.410] [000022800]: Disconnect process already running +(I) [13:02:54.423] [000022800]: SessionID : 5978ca - Disconnect called with reasonID 1000 - Destroying Party +(E) [13:02:54.453] [000022800]: SetVisible called while !IsConnected +(I) [13:02:55.132] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:02:55.132] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:02:55.132] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:02:55.132] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:02:55.132] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:02:55.132] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:02:55.132] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:02:55.132] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:02:55.132] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:02:55.132] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:02:55.132] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:02:55.132] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:02:55.132] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:02:55.132] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:02:55.132] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:02:55.132] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:02:55.132] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:02:55.132] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:02:55.132] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:02:55.132] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:02:55.132] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:02:55.132] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:02:55.132] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:02:55.132] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:02:55.132] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:02:55.132] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:02:55.132] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:02:55.373] [000022800]: WorldwideAdvertisementService::Process - EVENT_HOSTMIGRATION +(I) [13:02:55.373] [000022800]: WorldwidePartyService::OnHostMigration - [5863801] Got a queued migration event while disconnecting, ignoring +(I) [13:02:55.373] [000022800]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [13:02:55.373] [000022800]: WorldwidePartyService::PeerRemove, Removing peer ID: 1 +(I) [13:02:55.373] [000022800]: peerremove - peerIDRemoved=44204, reasonID=119, reason debug hint - Forcing peers to disconnect +(I) [13:02:55.373] [000022800]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [13:02:55.373] [000022800]: WorldwidePartyService::PeerRemove, Removing peer ID: 2 +(I) [13:02:55.373] [000022800]: peerremove - peerIDRemoved=3264, reasonID=1000, reason debug hint - MatchSetup::Disconnect +(E) [13:02:55.375] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.386] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.396] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.406] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.417] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.427] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.438] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.449] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.459] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.470] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.481] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.491] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.502] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.512] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.522] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.533] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.544] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.555] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.566] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.576] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.587] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.598] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.608] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.619] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.629] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.640] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [13:02:55.641] [000022800]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [13:02:55.641] [000022800]: WorldwidePartyService::PeerRemove, Removing peer ID: 1 +(I) [13:02:55.641] [000022800]: peerremove - peerIDRemoved=3264, reasonID=1000, reason debug hint - Destroying Party +(E) [13:02:55.650] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.650] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.660] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.660] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.671] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.671] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.681] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.681] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.692] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.692] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.702] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.702] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.713] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.713] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.724] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.724] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.734] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.734] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.745] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.745] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.756] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.756] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.766] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.766] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.777] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.777] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.788] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.788] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.799] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.799] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.809] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.809] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.820] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.820] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.830] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.830] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.840] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.840] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.851] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.851] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.861] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.861] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.872] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.872] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.883] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.883] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.893] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.893] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.904] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.904] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.914] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.914] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.925] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.925] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.936] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.936] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [13:02:55.936] [000022800]: PeerRemoveAll - flushing local session peer data +(I) [13:02:55.936] [000022800]: LeaveSessionInternal - no action taken, needLeave=0, service=0 +(I) [13:02:55.936] [000022800]: Destroyed Matchinfo +(E) [13:02:55.937] [000022800]: Socks::Free: Socket 0/6292 did not close properly before being freed. +(I) [13:02:55.937] [000022800]: OnDestroyPartyNotification - partyID = 5863801, prevID = -1 +(I) [13:02:55.937] [000022800]: OnDestroyPartyNotification - partyID = 5863801, prevID = -1 +(E) [13:02:55.946] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.956] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.967] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.978] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:55.989] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:56.000] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:56.010] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:56.020] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:56.031] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:56.041] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:56.052] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:56.062] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:56.073] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:56.083] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:02:56.094] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [13:02:56.098] [000022800]: PeerRemoveAll - flushing local session peer data +(I) [13:02:56.098] [000022800]: LeaveSessionInternal - no action taken, needLeave=0, service=0 +(I) [13:02:56.098] [000022800]: Destroyed Matchinfo +(E) [13:02:56.099] [000022800]: Socks::Free: Socket 0/6248 did not close properly before being freed. +(I) [13:02:56.099] [000022800]: OnDestroyPartyNotification - partyID = 5863626, prevID = -1 +(I) [13:02:56.099] [000022800]: OnDestroyPartyNotification - partyID = 5863626, prevID = -1 +(I) [13:02:58.219] [000022800]: starting online hosting +(I) [13:02:58.636] [000022800]: OnlineHostAsync success +(I) [13:02:58.636] [000022800]: Created Matchinfo for sessionID 5865858 +(I) [13:02:58.636] [000022800]: OnJoinAdvertisementSuccess - joined online match, server leave notification required +(I) [13:02:58.636] [000022800]: starting local hosting +(I) [13:02:58.637] [000022800]: ValidateCustomData: called with 5586 bytes of custom data +(I) [13:02:58.637] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:02:58.637] [000022800]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [13:02:58.637] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:02:58.647] [000022800]: Sending matchinfo change #2 +(I) [13:02:58.647] [000022800]: HostAsync - got operation info 0:SessionOperationInfo::SUCCESS +(I) [13:02:58.654] [000022800]: hosting - Session is connected +(I) [13:02:58.656] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=1/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=1/0, Pdel=0/0, drop=0/0, data=1/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=3/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=3/0, lb_p=0/0, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=1/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(E) [13:02:58.754] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:02:58.888] [000022800]: CreateSteamSessionAsync::Process: Successfully created lobby; lobbyId=109775243301662733 +(I) [13:02:59.622] [000023200]: Read bytes [0,"PlatformSessionUpdateMessage",3264,[5865858,"0",109775243301662733,""]] +(I) [13:02:59.627] [000022800]: Sending matchinfo change #3 +(I) [13:02:59.662] [000022800]: HostAsync - completed with HostResult = 0 +(I) [13:02:59.662] [000022800]: Party::SetHostJoinResult - 0 +(I) [13:02:59.663] [000022800]: Party::SetStatus - S_CONFIGURING +(I) [13:02:59.663] [000022800]: WorldwideAutomatchService::OnHostComplete - automatcher is no longer active - stopPollPending 0 automatchPollID 18446744073709551615 +(E) [13:02:59.751] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:02:59.758] [000022800]: Sending matchinfo change #4 +(E) [13:02:59.878] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:03:02.173] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [13:03:02.178] [000022800]: Sending matchinfo change #6 +(E) [13:03:02.257] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:03:02.355] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [13:03:02.355] [000022800]: Sending matchinfo change #7 +(E) [13:03:02.383] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:03:12.010] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=29ea3ded0e38db6cd65ae3ca96a18de4ab0858e49386e7571f48fc7769d45846 +(I) [13:03:13.001] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [13:03:13.184] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [13:03:24.000] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [13:03:24.200] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [13:03:33.012] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4b8f6f3aede3359f82b3f445a2ee54850a36b76ef1f3fa1ca9fe080fd41a1282 +(I) [13:03:35.006] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [13:03:35.188] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [13:03:46.004] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [13:03:46.243] [000022800]: Automatch2Internal - Server told us to host matchID [5865899] +(I) [13:03:46.243] [000022800]: WorldwideAutomatch2Service::OnHost - host request validated, attempting +(I) [13:03:46.243] [000022800]: WorldwideAutomatch2Service::OnHost - trying to host matchtype 20 +(I) [13:03:46.243] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [13:03:46.250] [000022800]: starting online hosting +(I) [13:03:46.968] [000022800]: OnlineHostAsync success +(I) [13:03:46.968] [000022800]: Created Matchinfo for sessionID 5865899 +(I) [13:03:46.968] [000022800]: OnJoinAdvertisementSuccess - joined online match, server leave notification required +(I) [13:03:46.968] [000022800]: starting local hosting +(I) [13:03:46.968] [000022800]: ValidateCustomData: called with 2836 bytes of custom data +(I) [13:03:46.968] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:03:46.969] [000022800]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [13:03:46.969] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:03:46.978] [000022800]: Sending matchinfo change #2 +(I) [13:03:46.978] [000022800]: HostAsync - got operation info 0:SessionOperationInfo::SUCCESS +(I) [13:03:46.983] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=1/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=1/0, Pdel=0/0, drop=0/0, data=1/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=3/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=3/0, lb_p=0/0, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=1/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:03:46.985] [000022800]: hosting - Session is connected +(I) [13:03:47.192] [000022800]: CreateSteamSessionAsync::Process: Successfully created lobby; lobbyId=109775243301663842 +(E) [13:03:47.206] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:03:47.955] [000023200]: Read bytes [0,"PlatformSessionUpdateMessage",3264,[5865899,"0",109775243301663842,""]] +(I) [13:03:47.958] [000022800]: Sending matchinfo change #3 +(I) [13:03:47.994] [000022800]: HostAsync - completed with HostResult = 0 +(I) [13:03:47.994] [000022800]: Creating an RLink chat channel (not a multiplayer game). +(I) [13:03:47.994] [000022800]: WorldwidePartyService::SetMatchState - state 0 unchanged ignoring +(I) [13:03:47.996] [000022800]: WorldwideAutomatchService::OnHostComplete - automatcher is no longer active - stopPollPending 0 automatchPollID 18446744073709551615 +(I) [13:03:47.996] [000022800]: Sending matchinfo change #8 +(E) [13:03:48.030] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:03:48.086] [000022800]: Sending matchinfo change #38 +(E) [13:03:48.093] [000022800]: Rejecting packet type 0 that claims to come from ourself +(E) [13:03:48.214] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:03:48.861] [000022800]: Sending matchinfo change #39 +(E) [13:03:49.090] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:03:49.840] [000022800]: ValidateCustomData: called with 1841 bytes of custom data +(I) [13:03:49.840] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:03:49.842] [000022800]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [13:03:49.842] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:03:49.846] [000022800]: WorldwideAutomatch2Service::Process - Got into game successfully, 2 players present, got correct slot settings - setting metadata +(I) [13:03:49.863] [000022800]: Sending matchinfo change #41 +(I) [13:03:50.218] [000022800]: Station [0:2] acknowledged matchinfo change #41 +(I) [13:03:50.597] [000022800]: Sending matchinfo change #42 +(I) [13:03:50.846] [000022800]: Station [0:2] acknowledged matchinfo change #42 +(I) [13:03:53.005] [000022800]: WorldwideAutomatch2Service::Process - Waiting, only 0 players ready +(I) [13:03:55.007] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=15aa1e41646840381b5b284c5d8d8da808550aa1f690274117da3b989e5cb66b +(I) [13:03:57.000] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [13:03:57.001] [000022800]: WorldwideAutomatch2Service::Process - Waiting, only 0 players ready +(I) [13:03:57.179] [000022800]: Automatch2Internal - Server told us to host matchID [5865899] +(I) [13:03:57.179] [000022800]: WorldwideAutomatch2Service::OnHost - already host, nothing to do +(I) [13:03:57.179] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [13:03:59.005] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/4, ichk=0/0, sk_r=0/0, deny=0/0, Padd=2/2, Pdel=0/0, drop=0/0, data=6/16, mdat=0/0, voip=0/0, rchk=0/0, nudg=2/4, Thdr=0/0, Peer=10/26, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=10/11, lb_p=6/1, lb_c=0/1, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=2/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:04:01.000] [000022800]: WorldwideAutomatch2Service::Process - Got into game successfully, 2 players present, got correct slot settings - readying up +(I) [13:04:01.000] [000022800]: Accepted PlayerReadyRequest; profileID=3264 isReady=1 +(I) [13:04:01.007] [000022800]: Sending matchinfo change #43 +(I) [13:04:01.349] [000022800]: Station [0:2] acknowledged matchinfo change #43 +(I) [13:04:02.344] [000022800]: Accepted PlayerReadyRequest; profileID=102126 isReady=1 +(I) [13:04:02.344] [000022800]: Sending matchinfo change #44 +(I) [13:04:02.595] [000022800]: Station [0:2] acknowledged matchinfo change #44 +(I) [13:04:02.602] [000022800]: WorldwidePartyService::SetMatchState - state 1 - updating server +(I) [13:04:02.604] [000022800]: Party::SetStatus - S_PLAYING +(I) [13:04:02.626] [000022800]: Sending matchinfo change #9 +(E) [13:04:02.656] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:04:03.477] [000022800]: Sending matchinfo change #45 +(I) [13:04:03.478] [000022800]: WorldwideAutomatchService::OnStartComplete - detected successful game start +(I) [13:04:03.478] [000022800]: Match Started - [102126 /steam/76561198016740247], slot = 0, ranking = 148 +(I) [13:04:03.478] [000022800]: Match Started - [3264 /steam/76561198023526153], slot = 1, ranking = 653 +(I) [13:04:03.725] [000022800]: Station [0:2] acknowledged matchinfo change #45 +(I) [13:04:03.941] [000023200]: Read bytes [0,"MatchStartMessage",3264,[[[3264,["2068341","2068340"]],[102126,["2068340"]]],[["3264","203852"],["102126","137123"]],1680519843,[["3264",[[2068706,74,452979,3264,1,0,"{}",1677175765,2,-1,19,2147483647],[2068728,1,453412,3264,1,0,"{}",1677175765,4,-1,3,2147483647],[2068694,46,451861,3264,1,0,"{}",1677175765,6,-1,19,2147483647],[2068440,75,454503,3264,1,0,"{\"att\":{\"is_new\":{\"val\":\"0\"}},\"epos\":\"20\",\"eslot\":\"20\",\"dlc\":1}",1677175764,2068706,-1,19,-1],[2068704,75,453178,3264,1,0,"{\"epos\":\"0\",\"eslot\":\"0\"}",1677175765,2068706,-1,19,2147483647],[2068705,75,453177,3264,1,0,"{\"epos\":\"1\",\"eslot\":\"1\"}",1677175765,2068706,-1,19,2147483647],[2068707,75,453176,3264,1,0,"{\"epos\":\"2\",\"eslot\":\"2\"}",1677175765,2068706,-1,19,2147483647],[2068790,75,454106,3264,1,0,"{\"epos\":\"18\",\"eslot\":\"18\"}",1677175765,2068706,-1,19,2147483647],[2068791,75,454107,3264,1,0,"{\"epos\":\"19\",\"eslot\":\"19\"}",1677175765,2068706,-1,19,2147483647],[2068793,75,454114,3264,1,0,"{\"epos\":\"6\",\"eslot\":\"6\"}",1677175765,2068706,-1,19,2147483647],[2068794,75,454112,3264,1,0,"{\"epos\":\"7\",\"eslot\":\"7\"}",1677175765,2068706,-1,19,2147483647],[2068796,75,454111,3264,1,0,"{\"epos\":\"8\",\"eslot\":\"8\"}",1677175765,2068706,-1,19,2147483647],[2068797,75,454113,3264,1,0,"{\"epos\":\"9\",\"eslot\":\"9\"}",1677175765,2068706,-1,19,2147483647],[2068799,75,454110,3264,1,0,"{\"epos\":\"10\",\"eslot\":\"10\"}",1677175765,2068706,-1,19,2147483647],[2068800,75,454125,3264,1,0,"{\"epos\":\"11\",\"eslot\":\"11\"}",1677175765,2068706,-1,19,2147483647],[2068801,75,454123,3264,1,0,"{\"epos\":\"12\",\"eslot\":\"12\"}",1677175765,2068706,-1,19,2147483647],[2068802,75,454116,3264,1,0,"{\"epos\":\"13\",\"eslot\":\"13\"}",1677175765,2068706,-1,19,2147483647],[2068803,75,454121,3264,1,0,"{\"epos\":\"14\",\"eslot\":\"14\"}",1677175765,2068706,-1,19,2147483647],[43146515,27,454571,3264,1,0,"{\"epos\":\"15\",\"att\":{\"is_new\":{\"val\":\"0\"}},\"eslot\":\"15\"}",1680029819,2068706,-1,51,-1],[43146516,27,454563,3264,1,0,"{\"epos\":\"3\",\"att\":{\"is_new\":{\"val\":\"0\"}},\"eslot\":\"3\"}",1680029819,2068706,-1,51,-1],[43146517,27,454567,3264,1,0,"{\"epos\":\"17\",\"att\":{\"is_new\":{\"val\":\"0\"}},\"eslot\":\"17\"}",1680029819,2068706,-1,51,-1],[43148195,28,454677,3264,1,0,"{\"epos\":\"4\",\"att\":{\"is_new\":{\"val\":\"0\"}},\"eslot\":\"4\"}",1680030159,2068706,-1,19,-1],[43148994,27,454569,3264,1,0,"{\"epos\":\"16\",\"att\":{\"is_new\":{\"val\":\"0\"}},\"eslot\":\"16\"}",1680030297,2068706,-1,51,-1],[43148995,27,454561,3264,1,0,"{\"epos\":\"5\",\"att\":{\"is_new\":{\"val\":\"0\"}},\"eslot\":\"5\"}",1680030297,2068706,-1,51,-1],[2068443,1,454524,3264,1,0,"{\"epos\":\"0\",\"eslot\":\"0\",\"dlc\":1}",1677175764,2068728,-1,19,-1],[2068447,1,454522,3264,1,0,"{\"epos\":\"10\",\"eslot\":\"10\",\"dlc\":1}",1677175764,2068728,-1,19,-1]]],["102126",[[7476094,38,451845,102126,1,0,"{}",1677182274,2,-1,19,2147483647],[7476129,1,453412,102126,1,0,"{}",1677182274,4,-1,3,2147483647],[7476096,38,451866,102126,1,0,"{}",1677182274,6,-1,19,2147483647],[7476099,39,453182,102126,1,0,"{\"epos\":\"1\",\"eslot\":\"1\"}",1677182274,7476094,-1,19,2147483647],[7476102,39,453179,102126,1,0,"{\"epos\":\"0\",\"eslot\":\"0\"}",1677182274,7476094,-1,19,2147483647],[7476103,39,453181,102126,1,0,"{\"epos\":\"2\",\"eslot\":\"2\"}",1677182274,7476094,-1,19,2147483647],[7476150,39,454103,102126,1,0,"{\"epos\":\"21\",\"eslot\":\"21\"}",1677182274,7476094,-1,19,2147483647],[7476151,39,454102,102126,1,0,"{\"epos\":\"22\",\"eslot\":\"22\"}",1677182274,7476094,-1,19,2147483647],[7476152,39,454101,102126,1,0,"{\"epos\":\"23\",\"eslot\":\"23\"}",1677182274,7476094,-1,19,2147483647],[7476153,39,454089,102126,1,0,"{\"epos\":\"14\",\"eslot\":\"14\"}",1677182274,7476094,-1,19,2147483647],[7476154,39,454088,102126,1,0,"{\"epos\":\"15\",\"eslot\":\"15\"}",1677182274,7476094,-1,19,2147483647],[7476155,39,454082,102126,1,0,"{\"epos\":\"8\",\"eslot\":\"8\"}",1677182274,7476094,-1,19,2147483647],[7476156,39,454086,102126,1,0,"{\"epos +(I) [13:04:03.945] [000022800]: WorldwideAutomatchService::OnStartComplete - detected successful game start +(I) [13:04:03.945] [000022800]: WorldwideAutomatchService::OnStartComplete - forcing pollcomplete event +(I) [13:04:03.946] [000022800]: GameApp::SetTargetState : new (Game) old (Uninitialized) +(I) [13:04:03.954] [000022800]: MOD - Setting player [0] race to: [137123] +(I) [13:04:03.955] [000022800]: MOD - Setting player [1] race to: [203852] +(I) [13:04:03.958] [000022800]: ModDllSetup: SetStatsGameUID=23463597 +(I) [13:04:03.958] [000022800]: GAME -- Scenario: data:scenarios\multiplayer\cliff_crossing_2p\cliff_crossing_2p +(I) [13:04:03.958] [000022800]: GAME -- Win Condition Qualified Name: 00000000000000000000000000000000:3318379781 +(I) [13:04:03.958] [000022800]: GAME -- Win Condition Name: VictoryPoint +(I) [13:04:03.958] [000022800]: GAME -- Human Player: 0 1337 HAXX0R 102126 0 germans +(I) [13:04:03.958] [000022800]: GAME -- Human Player: 1 Wolfsindis 3264 1 british_africa +(I) [13:04:03.958] [000022800]: GameApp::SetState : new (LoadingGame) old (UnloadedGame) +(I) [13:04:04.482] [000022800]: WorldwideAutomatch2Service::OnPollComplete - I am peer 1, ihost:1, islocal:1 +(I) [13:04:04.482] [000022800]: WorldwideAutomatch2Service::OnPollComplete - All players in session and ready, automatch process complete +(I) [13:04:04.777] [000022800]: GameObj::StartGameObj - info, network session GUID set to [23463597]. +(I) [13:04:04.777] [000022668]: Loading step: [OnBeginLoad] +(I) [13:04:04.778] [000022668]: Loading step: [Assign Players] +(I) [13:04:04.778] [000022668]: Loading step: [FXReflection] +(I) [13:04:04.778] [000022668]: Loading step: [FXDataContext] +(I) [13:04:04.778] [000022668]: Loading step: [FX Texture Pack] +(I) [13:04:04.779] [000022668]: Loading step: [Run Havok Garbage Collection] +(I) [13:04:04.779] [000022668]: Loading step: [Flush Inventory On Application Exit] +(I) [13:04:04.779] [000022668]: Loading step: [Default World] +(I) [13:04:04.837] [000022668]: Loading step: [FX Command Function] +(I) [13:04:04.837] [000022668]: Loading step: [AnimatorCommandFunction] +(I) [13:04:04.837] [000022668]: Loading step: [MemShrink] +(I) [13:04:04.839] [000022668]: Loading step: [Sync Checking] +(I) [13:04:04.839] [000022668]: Loading step: [Tuning Variant] +(I) [13:04:04.839] [000022668]: Using scenario tuning variant [default] +(I) [13:04:04.839] [000022668]: Loading step: [Mod Packs] +(I) [13:04:04.839] [000022668]: Loading step: [SimVis System] +(I) [13:04:04.839] [000022668]: Loading step: [DefaultWorld] +(I) [13:04:04.839] [000022668]: Loading step: [Visual Physics ME] +(I) [13:04:04.839] [000022668]: Loading step: [Deferred Decal Manager] +(I) [13:04:04.839] [000022668]: Loading step: [FogVolumeManager] +(I) [13:04:04.839] [000022668]: Loading step: [Vehicle Physics Function] +(I) [13:04:04.839] [000022668]: Loading step: [Unit Occlusion Function] +(I) [13:04:04.839] [000022668]: Loading step: [Splat Function] +(I) [13:04:04.839] [000022668]: Loading step: [Grass Function] +(I) [13:04:04.839] [000022668]: Loading step: [Object Alpha Factor Function] +(I) [13:04:04.839] [000022668]: Loading step: [Renderable Managers] +(I) [13:04:04.839] [000022668]: Loading step: [Setup Skins] +(I) [13:04:04.840] [000022668]: Loading step: [AnimEventSetup] +(I) [13:04:04.840] [000022668]: Loading step: [Session Precache] +(I) [13:04:04.954] [000022668]: Loading step: [Precache core resources] +(I) [13:04:04.955] [000022668]: Loading step: [Precache EBPs] +(I) [13:04:04.957] [000022668]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [13:04:04.957] [000022668]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [13:04:04.957] [000022668]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [13:04:04.957] [000022668]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [13:04:04.998] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:04:04.998] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:04:04.998] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:04:04.998] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:04:04.998] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:04:04.998] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:04:04.998] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:04:04.998] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:04:04.998] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:04:04.998] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:04:04.998] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:04:04.998] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:04:04.998] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:04:04.998] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:04:04.998] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:04:04.998] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:04:04.998] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:04:04.998] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:04:04.998] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:04:04.998] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:04:04.998] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:04:04.998] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:04:04.998] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:04:04.998] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:04:04.998] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:04:04.998] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:04:04.998] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:04:05.343] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:04:05.343] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:04:05.343] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:04:05.343] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:04:05.343] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:04:05.343] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:04:05.598] [000022668]: Loading step: [Precache State Tree references] +(I) [13:04:05.673] [000022668]: Loading step: [Load Actions] +(I) [13:04:05.675] [000022668]: Loading step: [Load Resources from Precache] +(I) [13:04:09.608] [000022668]: Loading step: [GEWorld] +(I) [13:04:09.608] [000022668]: GAME - InitializeGEWorld +(I) [13:04:09.918] [000022668]: Re-winding a compressed stream for file 'data:scenarios\multiplayer\cliff_crossing_2p\cliff_crossing_2p.scenario'. Expensive operation +(I) [13:04:10.366] [000022668]: Regenerating ImpassMap data... +(I) [13:04:10.481] [000022668]: Regenerating SimTerrainCoverMap data... +(I) [13:04:10.498] [000022668]: SimTerrainCoverMap generation took 0.017226 seconds. +(I) [13:04:10.955] [000022668]: Pathfinding::Regenerate()... +(I) [13:04:11.039] [000022668]: Pathfinding::Regenerate() Done. +(I) [13:04:11.262] [000022668]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:04:11.262] [000022668]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:04:11.262] [000022668]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:04:11.262] [000022668]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:04:11.262] [000022668]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:04:11.263] [000022668]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:04:11.263] [000022668]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:04:11.263] [000022668]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:04:11.263] [000022668]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:04:11.263] [000022668]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:04:11.263] [000022668]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:04:11.263] [000022668]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:04:11.263] [000022668]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:04:11.263] [000022668]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:04:11.263] [000022668]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:04:11.263] [000022668]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:04:11.263] [000022668]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:04:11.263] [000022668]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:04:11.263] [000022668]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:04:11.263] [000022668]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:04:11.263] [000022668]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:04:11.263] [000022668]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:04:11.263] [000022668]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:04:11.263] [000022668]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:04:11.263] [000022668]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:04:11.263] [000022668]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:04:11.263] [000022668]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:04:11.263] [000022668]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:04:11.263] [000022668]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:04:11.263] [000022668]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:04:11.263] [000022668]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:04:11.263] [000022668]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:04:11.296] [000022668]: GAME - CreateGEWorld in 1687 ms +(I) [13:04:11.296] [000022668]: SIM -- Setting SyncErrorChecking level to Low +(I) [13:04:11.296] [000022668]: Loading step: [Load Resources from GEWorld] +(I) [13:04:11.606] [000022668]: Loading step: [Sound Banks] +(I) [13:04:11.606] [000022668]: Loading step: [Session] +(I) [13:04:11.606] [000022668]: GAME - SessionSetup +(I) [13:04:11.607] [000022668]: GAME - SessionSetup finished in 0 ms +(I) [13:04:11.607] [000022668]: Loading step: [Player Setup] +(I) [13:04:11.607] [000022668]: GAME -- Recording game +(I) [13:04:11.608] [000022668]: Loading step: [Scenario Lua System] +(I) [13:04:11.627] [000022668]: Loading step: [Team Colour Init] +(I) [13:04:11.627] [000022668]: Loading step: [Race Precaching Event Listener Registration] +(I) [13:04:11.627] [000022668]: Loading step: [Simulation] +(I) [13:04:11.656] [000022668]: LoadWinCondition: - [winconditions\mode_victorypoint] succeeded. +(I) [13:04:11.829] [000022668]: Player [] killed on game tick [0] due to [unused player] +(I) [13:04:11.829] [000022668]: Player [] killed on game tick [0] due to [unused player] +(I) [13:04:11.829] [000022668]: Player [] killed on game tick [0] due to [unused player] +(I) [13:04:11.829] [000022668]: Player [] killed on game tick [0] due to [unused player] +(I) [13:04:11.829] [000022668]: Player [] killed on game tick [0] due to [unused player] +(I) [13:04:11.829] [000022668]: Player [] killed on game tick [0] due to [unused player] +(I) [13:04:11.829] [000022668]: Player [] killed on game tick [0] due to [unused player] +(I) [13:04:11.829] [000022668]: Player [] killed on game tick [0] due to [unused player] +(I) [13:04:11.829] [000022668]: Player [] killed on game tick [0] due to [unused player] +(I) [13:04:11.829] [000022668]: Player [] killed on game tick [0] due to [unused player] +(I) [13:04:11.829] [000022668]: Player [] killed on game tick [0] due to [unused player] +(I) [13:04:11.829] [000022668]: Player [] killed on game tick [0] due to [unused player] +(I) [13:04:11.829] [000022668]: Player [] killed on game tick [0] due to [unused player] +(I) [13:04:11.829] [000022668]: Player [] killed on game tick [0] due to [unused player] +(I) [13:04:12.078] [000022668]: Loading step: [GameUICore System] +(I) [13:04:12.094] [000022668]: Loading step: [UI System] +(I) [13:04:12.094] [000022668]: Loading step: [LUA] +(I) [13:04:12.094] [000022668]: Loading step: [Game Event Listener Registration] +(I) [13:04:12.094] [000022668]: Loading step: [CPU AI] +(I) [13:04:12.103] [000022668]: Loading step: [Scar Init] +(I) [13:04:12.103] [000022668]: Loading step: [FX System] +(I) [13:04:12.103] [000022668]: Loading step: [Cheat Menu] +(I) [13:04:12.106] [000022668]: Loading step: [Scar Start] +(I) [13:04:12.108] [000022668]: Loading step: [Load resources] +(I) [13:04:12.109] [000022668]: Loading step: [PreDisplay] +(I) [13:04:12.109] [000022668]: Loading step: [Free Loading Data] +(I) [13:04:12.109] [000022668]: PreloadResources took 0ms. +(I) [13:04:12.109] [000022668]: Loading step: [MemShrink] +(I) [13:04:12.109] [000022668]: Loading step: [Flush Inventory] +(I) [13:04:12.127] [000022668]: Loading step: [Resolve Impasse Blockers] +(I) [13:04:12.127] [000022668]: Loading step: [Convert OOB Static Entities to Visual Only Objects] +(I) [13:04:12.127] [000022668]: Loading step: [DefaultWorld Begin Play] +(I) [13:04:12.205] [000022668]: Loading step: [Preparing game] +(I) [13:04:12.205] [000022668]: Loading step: [Start Renderer] +(I) [13:04:12.205] [000022668]: Loading step: [FrontEnd simulation initialization] +(I) [13:04:12.205] [000022668]: Loading step: [WPFGFrontEnd loading] +(I) [13:04:12.206] [000022668]: Loading step: [OnEndLoad] +(I) [13:04:12.501] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [1840760828]. +(I) [13:04:14.005] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [1840760828]. +(I) [13:04:14.592] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:2]" finished loading with checksum [1840760828]. +(I) [13:04:14.595] [000022800]: PerformanceRecorder::StartRecording for game size 2 +(I) [13:04:14.595] [000022800]: GAME -- Starting mission: data:scenarios\multiplayer\cliff_crossing_2p\cliff_crossing_2p +(I) [13:04:14.595] [000022800]: MEM -- available page 10162 mb, total page 40074 mb +(I) [13:04:14.600] [000022800]: GameApp::SetState : new (Game) old (LoadingGame) +(I) [13:04:14.600] [000022800]: GameApp::SetTargetState : new (Uninitialized) old (Game) +(I) [13:04:15.089] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b8dc689bb4d41d1005d4de6372b77e7f25a7550321fb0aeec89a5287c35ecd15 +(I) [13:04:25.002] [000022800]: Local user framerate is [0.000000] +(I) [13:04:25.002] [000022800]: Local user MinDelay=[1ms], MaxDelay=[42ms], AvgDelay=[28ms], minRTT[122ms], maxRTT[356ms], avgRTT[198ms] +(I) [13:04:29.643] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c7ec33b39207d138147118fa6213f5ee135be67818b8ac9867efbdd0533e86a0 +(I) [13:04:46.006] [000022800]: Local user framerate is [115.788414] +(I) [13:04:46.006] [000022800]: Local user MinDelay=[1ms], MaxDelay=[58ms], AvgDelay=[38ms], minRTT[122ms], maxRTT[356ms], avgRTT[193ms] +(I) [13:04:47.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=101/22, mdat=257/514, voip=0/0, rchk=0/0, nudg=2/6, Thdr=0/0, Peer=14/28, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=14/14, lb_p=24/7, lb_c=0/0, cast=0/0, cdat=78/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:04:49.009] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f124ed0bb2813afe9bc68d5c4fb67689e259e9b4bccad9ee69a9830268398716 +(I) [13:05:00.001] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=47/0, mdat=104/208, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=6/1, lb_c=0/0, cast=0/0, cdat=43/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:05:02.749] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cde0e1431268917c8b7d3a3f21503611cf4da2b89f5c2374c2716711b62f6a23 +(I) [13:05:07.009] [000022800]: Local user framerate is [114.504189] +(I) [13:05:07.009] [000022800]: Local user MinDelay=[1ms], MaxDelay=[65ms], AvgDelay=[42ms], minRTT[107ms], maxRTT[356ms], avgRTT[189ms] +(I) [13:05:13.485] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b00ebd973b3fd077cb81cfeacd15ee7c07a8411dc6a2c90c15fed5e99aeaabdd +(I) [13:05:28.006] [000022800]: Local user framerate is [114.882767] +(I) [13:05:28.006] [000022800]: Local user MinDelay=[39ms], MaxDelay=[62ms], AvgDelay=[49ms], minRTT[177ms], maxRTT[196ms], avgRTT[185ms] +(I) [13:05:33.017] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=302799850844d61e75c3d264d4ecfa1da7c689d79df37956f91ecbe812b3928a +(I) [13:05:48.009] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=123/0, mdat=383/766, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=25/7, lb_c=0/0, cast=0/0, cdat=113/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:05:49.004] [000022800]: Local user framerate is [117.758774] +(I) [13:05:49.004] [000022800]: Local user MinDelay=[37ms], MaxDelay=[62ms], AvgDelay=[47ms], minRTT[137ms], maxRTT[197ms], avgRTT[186ms] +(I) [13:05:57.010] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=830941daf0fc768a639966d8f5b412ea6bd9308f5d0411cb22bf581d43e2bc23 +(I) [13:06:01.005] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=50/0, mdat=104/208, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=5/1, lb_c=0/0, cast=0/0, cdat=47/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:06:10.000] [000022800]: Local user framerate is [115.738419] +(I) [13:06:10.000] [000022800]: Local user MinDelay=[35ms], MaxDelay=[68ms], AvgDelay=[48ms], minRTT[137ms], maxRTT[232ms], avgRTT[186ms] +(I) [13:06:14.186] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=acdfba99c138789b39a3698d4e492b64f7369698781e68a55b6acb47bd3c857a +(I) [13:06:18.755] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1038cdeb2d0a4e3bf334af549618351b385b15112fbb3fca4bdf0ec7624639b8 +(I) [13:06:31.000] [000022800]: Local user framerate is [114.359962] +(I) [13:06:31.000] [000022800]: Local user MinDelay=[41ms], MaxDelay=[68ms], AvgDelay=[53ms], minRTT[125ms], maxRTT[250ms], avgRTT[179ms] +(I) [13:06:38.014] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8c1fab4287c1a5b3b81fa8eff2b31b122a5236f3990ddf7d6cca3b9ba37033d0 +(I) [13:06:48.885] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ff45571977c0ceb4432f870caa25d533a727b7fb7052097ddc8324b2ceb20914 +(I) [13:06:49.006] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=221/0, mdat=384/768, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=25/7, lb_c=0/0, cast=0/0, cdat=190/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:06:52.005] [000022800]: Local user framerate is [112.716179] +(I) [13:06:52.005] [000022800]: Local user MinDelay=[39ms], MaxDelay=[68ms], AvgDelay=[52ms], minRTT[125ms], maxRTT[250ms], avgRTT[181ms] +(I) [13:07:02.001] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=63/0, mdat=104/208, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=7/1, lb_c=0/0, cast=0/0, cdat=56/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:07:06.095] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b745f941e982539e6cb9531db592c65cc88087d84e4fb2ae2e87fccf072437bc +(I) [13:07:11.942] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2a7b0770f918637971a46d96e7002b3d40062de91a8addf7f6facba4543aaa24 +(I) [13:07:13.012] [000022800]: Local user framerate is [113.682945] +(I) [13:07:13.012] [000022800]: Local user MinDelay=[34ms], MaxDelay=[68ms], AvgDelay=[52ms], minRTT[110ms], maxRTT[250ms], avgRTT[180ms] +(I) [13:07:25.790] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=614b598d7c6376d7bb4707b4ed3b3ad54038851714840b91360cf7a283df2ee1 +(I) [13:07:30.222] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=15b0ed06b68935bcea7d1b0940a4e01c8765f6bdd2fe0c6bf6c0a604e245969c +(I) [13:07:34.004] [000022800]: Local user framerate is [110.033493] +(I) [13:07:34.004] [000022800]: Local user MinDelay=[43ms], MaxDelay=[68ms], AvgDelay=[55ms], minRTT[118ms], maxRTT[241ms], avgRTT[176ms] +(I) [13:07:37.950] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=439264fb6a332666530d4726e9f2818ad39601d3b06806ada3370225c3077978 +(I) [13:07:43.549] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a57dfb9c1eaa51d7f4f8bbfd930f69343744298fa4f909ad3f5b562c05e25df7 +(I) [13:07:47.143] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2f6c0ca527c2ff9bbd39090e5aaec401ee087ac7ebd71d27afec24098d939023 +(I) [13:07:50.005] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=203/0, mdat=384/768, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=23/7, lb_c=0/0, cast=0/0, cdat=176/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:07:50.564] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1a7e62d1e0a1a861ee266e6ecbd8d91fa5c9cec2c612d12782d07c40a11f70a9 +(I) [13:07:55.003] [000022800]: Local user framerate is [106.194679] +(I) [13:07:55.003] [000022800]: Local user MinDelay=[43ms], MaxDelay=[74ms], AvgDelay=[56ms], minRTT[118ms], maxRTT[247ms], avgRTT[176ms] +(I) [13:08:03.009] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=56/0, mdat=104/208, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=7/2, lb_c=0/0, cast=0/0, cdat=47/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:08:04.689] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=21fa67f93385f9bb0dcb4198121d8871b2535ece21eb4aada9ffc91126c2dee1 +(I) [13:08:16.005] [000022800]: Local user framerate is [109.728043] +(I) [13:08:16.005] [000022800]: Local user MinDelay=[55ms], MaxDelay=[64ms], AvgDelay=[59ms], minRTT[161ms], maxRTT[174ms], avgRTT[169ms] +(I) [13:08:16.947] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5175664a54e75f686cf0efe091f7fc2a5536308824ef205e6ea911dfb2cdb89e +(I) [13:08:25.810] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=762916983a1bf4b7da09ba5cc140be5ed311e4c07348d3e39a671b960ba07f5d +(I) [13:08:30.439] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=de660aa5a8247cb7f8b5c2f23cc7fb897ac6ef73924168a023fd1d131cd3c32d +(I) [13:08:34.526] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a6137172d525d1c9131a3f7e0c4e13b80c1fc4e2f7a08bfbe4ee5a7ca7ff191b +(I) [13:08:37.005] [000022800]: Local user framerate is [107.483879] +(I) [13:08:37.005] [000022800]: Local user MinDelay=[42ms], MaxDelay=[77ms], AvgDelay=[56ms], minRTT[116ms], maxRTT[300ms], avgRTT[175ms] +(I) [13:08:38.446] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4b07ef1d297e54b945dce907c4f22eeba1ecde4537bf66ffb3bc4309734900d9 +(I) [13:08:41.594] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=56f1cfc186fc8301925ec386f0b5f1f334a34a32a147868a23821e061d9f76c8 +(I) [13:08:47.400] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7b80b909aa76c7dc1ecf810db62d89248f09953bf624e81a4fb5a6d4dc26d0dc +(I) [13:08:51.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=208/0, mdat=384/768, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=24/6, lb_c=0/0, cast=0/0, cdat=178/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:08:55.877] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b8889f28b880b55bc2e1dfa981612592c6bd19fd3882a819c5c48e42b13417ad +(I) [13:08:58.005] [000022800]: Local user framerate is [109.694511] +(I) [13:08:58.005] [000022800]: Local user MinDelay=[42ms], MaxDelay=[77ms], AvgDelay=[57ms], minRTT[116ms], maxRTT[300ms], avgRTT[175ms] +(I) [13:08:58.992] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=19f7b9cc5c3489441fbaee75fd8c450f32d2e49df3c113fdd246ac0658853538 +(I) [13:09:01.565] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=72f6a6fcc1295580141f823f12217163e31834ae7c802bf4e5fd95e4f96be3ea +(I) [13:09:04.003] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=53/0, mdat=104/208, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=6/2, lb_c=0/0, cast=0/0, cdat=50/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:09:05.961] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ec2c7240f04b732a23d9aeb9ba08ba761905e0d290edc2ddfa15eb6c208bfc77 +(I) [13:09:14.560] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6647258fbd4590f80c376cd13c5582a663b8eb0644f6ad1c802e6b6d9ed08cf8 +(I) [13:09:19.000] [000022800]: Local user framerate is [109.567123] +(I) [13:09:19.000] [000022800]: Local user MinDelay=[48ms], MaxDelay=[64ms], AvgDelay=[55ms], minRTT[167ms], maxRTT[226ms], avgRTT[183ms] +(I) [13:09:25.642] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=76803e1d647ec6cdc018eeadebe7209e21dce9f379445a1d7acd40a98fbfe17c +(I) [13:09:35.792] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=174e81ebf5ccf5c3fe17da5452d008c7e086a31ba9595a67e82108d6005adfe0 +(I) [13:09:40.007] [000022800]: Local user framerate is [109.917023] +(I) [13:09:40.007] [000022800]: Local user MinDelay=[42ms], MaxDelay=[70ms], AvgDelay=[56ms], minRTT[136ms], maxRTT[303ms], avgRTT[185ms] +(I) [13:09:49.920] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1ec7c0c52aadf01aba66d3c9addf70c27575ff133bfb3f44b80b7538ffce8ef3 +(I) [13:09:52.001] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=201/0, mdat=384/768, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=24/6, lb_c=0/0, cast=0/0, cdat=181/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:09:52.889] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1e6d9520fa5f05be911be29002c5e087d82f0341b7714461dfd0d273555754ea +(I) [13:09:59.623] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f9f5233e040ba468920359f009852d8f65429ce1f3347d67fac1b695729c63ce +(I) [13:10:01.001] [000022800]: Local user framerate is [107.794601] +(I) [13:10:01.001] [000022800]: Local user MinDelay=[42ms], MaxDelay=[70ms], AvgDelay=[55ms], minRTT[119ms], maxRTT[303ms], avgRTT[181ms] +(I) [13:10:03.393] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5a83d993805e0fa9d44cefbb93caeca510d4b8d146f7028e47b9f3c2e4402ef2 +(I) [13:10:05.006] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=36/0, mdat=104/208, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=7/2, lb_c=0/0, cast=0/0, cdat=32/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:10:12.544] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3575c2fcb7fb3b20e3cb5f272c61fbf0c9c56bfae2504f365611bbd0fd98f430 +(I) [13:10:15.111] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3d3f22ab2f33cc52c6b00b6d15ce8bf25bb4b48232b736a887bdc5d8c82e0ee5 +(I) [13:10:22.005] [000022800]: Local user framerate is [108.467461] +(I) [13:10:22.005] [000022800]: Local user MinDelay=[44ms], MaxDelay=[70ms], AvgDelay=[58ms], minRTT[116ms], maxRTT[219ms], avgRTT[174ms] +(I) [13:10:27.926] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=28ba9f968e7315d6a458751dda9e5ae2030a0ba6f23a0e448a6543b4b9833331 +(I) [13:10:32.392] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b274ba36050d0a869398aec8b54ace0adbd66c70fbf47f2ccb0b0c781375d62a +(I) [13:10:36.576] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=675256fe432801ad2488df3705c9f873cd6e98687add2675f60a2dd9b03c1147 +(I) [13:10:39.167] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=99f7040f4cb5096952f142236b611f0ca304e562b85d9cb97641c55bac1b89c5 +(I) [13:10:42.086] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fb9487f88e2d1ca522866e2b375f1f8eda71cd9439501308024ffb6a19ebb9ab +(I) [13:10:43.008] [000022800]: Local user framerate is [107.157127] +(I) [13:10:43.008] [000022800]: Local user MinDelay=[44ms], MaxDelay=[81ms], AvgDelay=[58ms], minRTT[113ms], maxRTT[233ms], avgRTT[172ms] +(I) [13:10:45.175] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9fef05a35b9c0359c572612b2640bd3f84435b8273000f7ae9e75b9511046664 +(I) [13:10:51.502] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=18deb985ebe8439c963c86894aab57c78898de3249ba0989ac677daf1b83de1e +(I) [13:10:53.003] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=206/0, mdat=383/766, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=23/6, lb_c=0/0, cast=0/0, cdat=181/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:11:00.388] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=28e5597d81950b764845ea1bd70529905afdb68e091b5480c585d0670f8240f3 +(I) [13:11:04.002] [000022800]: Local user framerate is [100.419868] +(I) [13:11:04.002] [000022800]: Local user MinDelay=[43ms], MaxDelay=[81ms], AvgDelay=[56ms], minRTT[113ms], maxRTT[241ms], avgRTT[177ms] +(I) [13:11:04.041] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1bf2282db3d550f0746c6145675da1556bd1e107bc0ff0ea3ad07f26b0a25f02 +(I) [13:11:06.005] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=67/0, mdat=104/208, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=7/2, lb_c=0/0, cast=0/0, cdat=58/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:11:18.781] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ba6b16fc10daa01775fe26c5491707337658f1fe6ff9cdcbb3021e98c4119c21 +(I) [13:11:25.008] [000022800]: Local user framerate is [105.289467] +(I) [13:11:25.008] [000022800]: Local user MinDelay=[52ms], MaxDelay=[71ms], AvgDelay=[59ms], minRTT[155ms], maxRTT[248ms], avgRTT[177ms] +(I) [13:11:27.389] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8ae17fa3d06f03ec1383e5a9b8a04046707c8fefe736e9b3eb2b4021f5143c2a +(I) [13:11:32.401] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=052a866b920baeeba03f51d22f08fa17d7c3529e7c5ebc8280cfe65e08fe7477 +(I) [13:11:33.507] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=15a38edbf857cb4b2944eff3cdb19315a5b374b1bb634fd751e881fb7baff474 +(I) [13:11:35.644] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e3a142f5eedc8a1bdb67daef380137e0e99feca8e3096f01ddf61e741e1abec2 +(I) [13:11:40.999] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2b42233b47cc9d2e13a610cbcc96d1ae714be7588ab3184652dd61cd7b1c3da1 +(I) [13:11:45.569] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f72bd88e3bfac5dcc93f45a101edcc44eec226893d7ba5d8ce89b3266617deea +(I) [13:11:46.001] [000022800]: Local user framerate is [103.344826] +(I) [13:11:46.001] [000022800]: Local user MinDelay=[46ms], MaxDelay=[71ms], AvgDelay=[58ms], minRTT[116ms], maxRTT[248ms], avgRTT[173ms] +(I) [13:11:54.001] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=184/0, mdat=384/768, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=24/6, lb_c=0/0, cast=0/0, cdat=162/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:11:59.255] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3133bc875d3c12611ad9084401d2efd32c5b5f630022ebcaba1d046401c1e8d7 +(I) [13:12:04.613] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=690b07c890cfecf44b19b0a0ef4c09b1b99830873c4b7da9a18445845739f241 +(I) [13:12:07.010] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=63/0, mdat=104/208, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=6/2, lb_c=0/0, cast=0/0, cdat=57/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:12:07.012] [000022800]: Local user framerate is [107.094635] +(I) [13:12:07.012] [000022800]: Local user MinDelay=[38ms], MaxDelay=[71ms], AvgDelay=[55ms], minRTT[116ms], maxRTT[248ms], avgRTT[176ms] +(I) [13:12:08.568] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1ca7aa6f5bbdfe4a4c4784402b3ac1b8a5183c3754dddbdbceb257da5e008996 +(I) [13:12:12.012] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=17647893cb164b1413008862a051faa4e9044c5d6699b1f41e56f38c8aabf083 +(I) [13:12:15.894] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4ca89c1e1e53c2928a2260edcc002514edc255f1ee8fb4ac046d9ed7053a0438 +(I) [13:12:17.635] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=607589f274be11370c317f8bc12f908ce33142c4f7223f0a32db3df51da7cd2a +(I) [13:12:23.880] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cab67853c816b03a29d88483fb4705a3f16e26cff44ed15e398090c0c7b3fe2c +(I) [13:12:25.728] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c30c08d14a4a5cb09954d1e9e9be578edd748c1ada69abf02c156657c60ca3cc +(I) [13:12:28.000] [000022800]: Local user framerate is [106.128769] +(I) [13:12:28.000] [000022800]: Local user MinDelay=[41ms], MaxDelay=[73ms], AvgDelay=[56ms], minRTT[109ms], maxRTT[243ms], avgRTT[179ms] +(I) [13:12:34.422] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=af9f1c5f66d24b3c06d23f4e88da1444086375caa77e402676a42468b5755cf4 +(I) [13:12:35.421] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=da1a9ea64e31e45d426ecb7045b0251d33f7edb847240c72ce8a728214967887 +(I) [13:12:49.000] [000022800]: Local user framerate is [103.734436] +(I) [13:12:49.000] [000022800]: Local user MinDelay=[39ms], MaxDelay=[73ms], AvgDelay=[57ms], minRTT[109ms], maxRTT[243ms], avgRTT[177ms] +(I) [13:12:49.776] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=05ac0bb88de6eeeb25aca042a6125b3b0286797172a90df548cb01fe66950f1e +(I) [13:12:55.005] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=200/0, mdat=384/768, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=24/6, lb_c=0/0, cast=0/0, cdat=174/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:12:58.944] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2c555abfce6ea6f6eed819758ec6cc93fc80fbe9d4e5982dcbee243c193b3699 +(I) [13:12:59.791] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=951c7c68ac8dd19e51090aaaa9a0b541422c2585ff62757c46104333b9845c51 +(I) [13:13:08.006] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=82/0, mdat=104/208, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=7/2, lb_c=0/0, cast=0/0, cdat=68/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:13:09.516] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ded733b5d0d7b013cc6517a99dce613b5eb29c11abeda6e41fa37bdba962bf3f +(I) [13:13:10.002] [000022800]: Local user framerate is [107.278534] +(I) [13:13:10.002] [000022800]: Local user MinDelay=[39ms], MaxDelay=[89ms], AvgDelay=[58ms], minRTT[109ms], maxRTT[282ms], avgRTT[174ms] +(I) [13:13:19.644] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=45ab2311bdb4aa3c3ff4608def0f8ceed87959630ecb3b39620cb37b3ca49083 +(I) [13:13:25.449] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5032a04dad7d9b99f8b087ba60f3768b5f3c7943848d61578b0dfa2a314471bb +(I) [13:13:31.005] [000022800]: Local user framerate is [99.985001] +(I) [13:13:31.005] [000022800]: Local user MinDelay=[42ms], MaxDelay=[70ms], AvgDelay=[54ms], minRTT[120ms], maxRTT[277ms], avgRTT[174ms] +(I) [13:13:38.932] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7cbf1e1ce024fc17e8bf6cc0364c04c1a2712a0322edb862894d0d8aa5bb9972 +(I) [13:13:44.739] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=81c5018ab2422e397dcbdd4d0cc84995bc7db610d5f07805eb42d79c15fdab69 +(I) [13:13:49.213] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=dd7ab56230a9997a0b40ed6fd1b57d3384daa3f8240fd8ce0a9fb8f087c456c6 +(I) [13:13:52.006] [000022800]: Local user framerate is [102.179558] +(I) [13:13:52.006] [000022800]: Local user MinDelay=[42ms], MaxDelay=[74ms], AvgDelay=[54ms], minRTT[120ms], maxRTT[295ms], avgRTT[179ms] +(I) [13:13:53.335] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c0b29314881a7bcc172efccf8738cf0810b2ad058d29dcb407e9043c55f9edc3 +(I) [13:13:56.005] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=225/0, mdat=384/768, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=23/6, lb_c=0/0, cast=0/0, cdat=190/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:13:56.957] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=00761a513cb10f0124a8a3358d0a4d67c5b1e7cbee30ccf26ab505be0cd33186 +(I) [13:14:02.383] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=deeb7c02b212b664d2deb012c1b2ac5474a9797e1ce8fe67be36ca06857c0fcd +(I) [13:14:03.955] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e3c1520d11b4540df1a00a60def7e9ef5181d9b5522569839f51b83ae9260a74 +(I) [13:14:05.277] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0e9964a83d1bea686f68cb4a3de8f5f640d477530cfd452a015fa9657fe9c10f +(I) [13:14:09.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=62/0, mdat=104/208, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=7/2, lb_c=0/0, cast=0/0, cdat=53/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:14:12.352] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a0eac114c0d7d20767ca40fe06c04a404d8aa0ff3b00bb0d01ef66e2f021fb8b +(I) [13:14:13.003] [000022800]: Local user framerate is [103.834427] +(I) [13:14:13.003] [000022800]: Local user MinDelay=[38ms], MaxDelay=[77ms], AvgDelay=[53ms], minRTT[119ms], maxRTT[237ms], avgRTT[176ms] +(I) [13:14:14.643] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6c420bf2d836b9673b9dfc65a0f565701fc0c58340b9ebe54cc80300b7954896 +(I) [13:14:20.604] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a7bbb900646750b09198c7d11d07a1ddf285dbcadd8986f071afa15fa6e0a19e +(I) [13:14:24.776] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2225ed364c96b99f4f4585b06c7a26894adb9628cff8b228045a1e9d5820dd65 +(I) [13:14:31.164] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4c0ac484d5fd4a8916e1aacf984e55ff4400dbdcc02b88db13e0df6fbf7decec +(I) [13:14:34.000] [000022800]: Local user framerate is [99.235115] +(I) [13:14:34.000] [000022800]: Local user MinDelay=[45ms], MaxDelay=[72ms], AvgDelay=[57ms], minRTT[107ms], maxRTT[240ms], avgRTT[170ms] +(I) [13:14:36.591] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a88e01d83bc4b63f8e590c2ff4782cc7314d675ad1745045c0844800077fdc9d +(I) [13:14:44.314] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=00d159b79a44a6b9760bf403c6f4b0c8da6bc55f59d1f1097027d34c49a361df +(I) [13:14:51.322] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9de8fdd23ca77a7a442d267398b84fe97f8235e18cce59228d67fb7f62a7783f +(I) [13:14:54.762] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=188c18539367fcbd914f5b49d68a5349bf6a837653cc91631016c00d76d5648f +(I) [13:14:55.008] [000022800]: Local user framerate is [96.556549] +(I) [13:14:55.008] [000022800]: Local user MinDelay=[38ms], MaxDelay=[72ms], AvgDelay=[57ms], minRTT[107ms], maxRTT[242ms], avgRTT[174ms] +(I) [13:14:57.009] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=244/0, mdat=383/766, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=24/6, lb_c=0/0, cast=0/0, cdat=201/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:15:05.636] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c9fb44ab12f94883cc69d50caeebbe412f62f818d51d551bad90a3cf8cdddba3 +(I) [13:15:06.509] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e67b6b99d48fb3540dfc6cf946a0fc90d463874c98ff5fcad5c7f46ec26aff60 +(I) [13:15:07.873] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e3808c3f14bc39c86c20a9ed2be03b9c10ba2d5b61ee66aaefa5c5fd54d19bfc +(I) [13:15:10.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=55/0, mdat=104/208, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=6/2, lb_c=0/0, cast=0/0, cdat=43/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:15:15.781] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=83e1063de8929fbd4f0060a67c311a477c2fc843fc06188305c310c1721eb835 +(I) [13:15:16.002] [000022800]: Local user framerate is [97.790215] +(I) [13:15:16.002] [000022800]: Local user MinDelay=[53ms], MaxDelay=[67ms], AvgDelay=[59ms], minRTT[152ms], maxRTT[173ms], avgRTT[166ms] +(I) [13:15:16.619] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fc5d8ca8dbad706a5743052026cfbbbf33c3adfbaaf240060dc13db18ac485b1 +(I) [13:15:21.277] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5197d53c39f8b0d73e3c25008b0e9768d2387f4517861a9f16dfadc9bf1f5a0b +(I) [13:15:22.362] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c3398349814a76584f2170f316d86f8e2a90a59939eb0cc78aa6e07997ca781a +(I) [13:15:30.938] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7394b9c51b9ad69ff5e7388d259cae9e5be875528b4f18f040a9fb4e8fdd5c55 +(I) [13:15:33.584] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=12f87861862b84e2deb70576df6b0f324bdec434ce96927714ef147ce44f3151 +(I) [13:15:37.013] [000022800]: Local user framerate is [84.636520] +(I) [13:15:37.014] [000022800]: Local user MinDelay=[46ms], MaxDelay=[75ms], AvgDelay=[61ms], minRTT[116ms], maxRTT[240ms], avgRTT[170ms] +(I) [13:15:45.054] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=adc18672b3d2607b4b97ee2ff292acbf59733f2018f12947ec800b2689b7351b +(I) [13:15:57.843] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cfdb050351c697eb1e3c1549128a6ca95ec928b11b7f2e1d550a9b22f47949ad +(I) [13:15:58.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=159/0, mdat=384/768, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=24/6, lb_c=0/0, cast=0/0, cdat=142/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:15:58.004] [000022800]: Local user framerate is [88.147110] +(I) [13:15:58.004] [000022800]: Local user MinDelay=[46ms], MaxDelay=[83ms], AvgDelay=[63ms], minRTT[112ms], maxRTT[240ms], avgRTT[168ms] +(I) [13:16:05.276] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6aac125eef401be5d9626e6bffde3371a1f5c303df73ba0a1b0ddc967c65a8da +(I) [13:16:11.001] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=45/0, mdat=104/208, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=6/2, lb_c=0/0, cast=0/0, cdat=41/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:16:19.010] [000022800]: Local user framerate is [103.358650] +(I) [13:16:19.010] [000022800]: Local user MinDelay=[58ms], MaxDelay=[76ms], AvgDelay=[66ms], minRTT[151ms], maxRTT[193ms], avgRTT[166ms] +(I) [13:16:20.702] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5440adb0f591982950ca33669fa4f1d7fdb06fbe80a7eb5ade29335ce0b4a5fe +(I) [13:16:26.293] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cac69c4d99d0ef07023fb5674adea6d16acb7a66a300ba17c740961569d47144 +(I) [13:16:26.910] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=755bf4aa6f2dda3e33cc81fc127652e826eef05d742f6f425c769ec237b6628f +(I) [13:16:40.023] [000022800]: Local user framerate is [100.194984] +(I) [13:16:40.023] [000022800]: Local user MinDelay=[47ms], MaxDelay=[82ms], AvgDelay=[63ms], minRTT[111ms], maxRTT[224ms], avgRTT[167ms] +(I) [13:16:46.025] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f7032a0ba177c0cbed20ac08ecc9b7899503ca2726ba4a73fd95c9d366aeb69f +(I) [13:16:52.421] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1ac57a1631b55a70246d463dbbb8209c37d3ca907e45b8dfb91c1205349c7a53 +(I) [13:16:58.607] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9338b5ffacd04c16ef333656d176711ad8fc49af4e7503179c35a9998af1d824 +(I) [13:16:59.006] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=174/0, mdat=384/768, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=26/7, lb_c=0/0, cast=0/0, cdat=154/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:17:01.007] [000022800]: Local user framerate is [103.274178] +(I) [13:17:01.007] [000022800]: Local user MinDelay=[42ms], MaxDelay=[82ms], AvgDelay=[60ms], minRTT[111ms], maxRTT[229ms], avgRTT[170ms] +(I) [13:17:08.499] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ced577bc47a1afc2d7fdf6959f014a8d7fb9d678b886660b698daf98f91cd172 +(I) [13:17:12.006] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=67/0, mdat=104/208, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=5/1, lb_c=0/0, cast=0/0, cdat=56/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:17:13.286] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c810d6f7081581983b1239ec51a982780871d2bb8856f01a8b054ff6704251ac +(I) [13:17:18.976] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=19e38f2f777fd6e7580ec578c1fbfc74b73ca96f7adfbf47fb9b4ffe3f4eefdc +(I) [13:17:22.004] [000022800]: Local user framerate is [96.606522] +(I) [13:17:22.004] [000022800]: Local user MinDelay=[50ms], MaxDelay=[75ms], AvgDelay=[63ms], minRTT[123ms], maxRTT[250ms], avgRTT[176ms] +(I) [13:17:29.056] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=622447f96369378a6783c812ef1c3843c3cd3aef261c51a343e34e39ce7cfb52 +(I) [13:17:42.925] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=acc4bc8de39d76795e131a3eee2ce7ae760d9f421ef56195ee32880d8d1f760d +(I) [13:17:43.000] [000022800]: Local user framerate is [103.758492] +(I) [13:17:43.000] [000022800]: Local user MinDelay=[46ms], MaxDelay=[77ms], AvgDelay=[62ms], minRTT[123ms], maxRTT[250ms], avgRTT[173ms] +(I) [13:17:59.361] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=efbd87e8d485a8cc83c4fe8b5e77f98bf5cadbfb731b10a17c2dc42382112e0f +(I) [13:18:00.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=207/0, mdat=384/768, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=25/7, lb_c=0/0, cast=0/0, cdat=177/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:18:04.000] [000022800]: Local user framerate is [99.650002] +(I) [13:18:04.000] [000022800]: Local user MinDelay=[45ms], MaxDelay=[77ms], AvgDelay=[61ms], minRTT[106ms], maxRTT[306ms], avgRTT[172ms] +(I) [13:18:07.140] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2fa0ab38d832ff69a1dbacd8a8ba1302cef37a03f1757f688eb8b161c386a4c3 +(I) [13:18:08.846] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=27734b925e84ac5d90d503a2e3c354ae726e1d58174161884fdb83de17ccc249 +(I) [13:18:13.002] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=53/0, mdat=104/208, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=5/1, lb_c=0/0, cast=0/0, cdat=46/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:18:16.892] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=befd03e1be166d53510727bcf48d7bdfd633e13846c45c4da99a59198149e80a +(I) [13:18:21.559] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=62cfddd8d6a597f945d3c1476382693a7701ec840f7741692b981861e7e4c966 +(I) [13:18:24.354] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5b0bc0e040e4f0b510bad3bbe6a89b120ce2d20b6020b5a5cb3e18005c97376b +(I) [13:18:25.006] [000022800]: Local user framerate is [98.320503] +(I) [13:18:25.006] [000022800]: Local user MinDelay=[48ms], MaxDelay=[77ms], AvgDelay=[59ms], minRTT[119ms], maxRTT[238ms], avgRTT[177ms] +(I) [13:18:30.832] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7f535acc5cd54d95e82f998f448d124a24046f41214a75b5d5d8a97be26f5643 +(I) [13:18:34.661] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ae728522f8ab2d20e8f119d0010ec12c59fb501fc89027bf9e7752a7ba2ecdcd +(I) [13:18:36.477] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e2a9297ae52ae01fb71f2d9cf75c620ab7046240830ee4ca668eda3683914fd8 +(I) [13:18:36.985] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b7959799d64309744a485c14f29cbd103a99c006cb44bdc0d169b5e601354b73 +(I) [13:18:41.581] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e57105017dcf8e662430442ec5cd7d81a8431f2a0378643d536c544b2eee4ed2 +(I) [13:18:45.601] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=59c1eb70eec25a027b36e01c3dafd3b7603075d447edf3b90f23eb0d7d2a03c4 +(I) [13:18:46.001] [000022800]: Local user framerate is [88.164726] +(I) [13:18:46.001] [000022800]: Local user MinDelay=[41ms], MaxDelay=[77ms], AvgDelay=[59ms], minRTT[119ms], maxRTT[296ms], avgRTT[175ms] +(I) [13:18:51.234] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=dc8c0f4708874cb5cd95437112172d646ad0bee3316d325b19cfba3b480a1c5a +(I) [13:18:59.686] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=eb9009572a23b35704ca868e21007aa00df1bf4f3e6bfd7eb997b7228b635b66 +(I) [13:19:01.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=198/0, mdat=384/768, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=25/7, lb_c=0/0, cast=0/0, cdat=169/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:19:06.493] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c57940fb830e371a57f50f4692b6c113ced9297409fc9918e245ec48d5f4ced0 +(I) [13:19:07.001] [000022800]: Local user framerate is [96.800003] +(I) [13:19:07.001] [000022800]: Local user MinDelay=[41ms], MaxDelay=[77ms], AvgDelay=[60ms], minRTT[117ms], maxRTT[296ms], avgRTT[173ms] +(I) [13:19:14.004] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=57/0, mdat=103/206, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=6/2, lb_c=0/0, cast=0/0, cdat=48/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:19:14.387] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9a652ca97b2428278241505e09b75dffd3d1cbb1c3daaaddccbfc24ed8ca0eb0 +(I) [13:19:15.508] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3e7fd1c05954bfb333ad5c3eceac3fa02b8942c9ab622a41f1efd47845050248 +(I) [13:19:17.996] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=bbad682e40a7370a15c39e4d837a76f3f0ae925384a4cee10a4276023e94fdf4 +(I) [13:19:26.411] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f3a9f2b4caa99b8b73966d8c0b964cd18aa394488e26b753c0052dc0a5f05b58 +(I) [13:19:28.014] [000022800]: Local user framerate is [92.076973] +(I) [13:19:28.014] [000022800]: Local user MinDelay=[52ms], MaxDelay=[80ms], AvgDelay=[64ms], minRTT[121ms], maxRTT[224ms], avgRTT[163ms] +(I) [13:19:30.853] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0637ee1d25dfbc493285d2e26b493e00777e3033fca1ef3a046d7d18577ff6b6 +(I) [13:19:32.214] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2908fe115c41157939fd81a27950cbf578c37adc5044230bc77daf0fd8730960 +(I) [13:19:35.133] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a42dc0088a342eb04be40cb84c227cb48492fa541df4f44dab9cc5af21ff05e1 +(I) [13:19:36.288] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=04809f5fb4f0c77b7840a4c3cf45cedb3f00f110bb191dbab555e28635a64db8 +(I) [13:19:39.247] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8c97da172229f009309009c995611ce4bb5826e76843e021001d382d7dc88bec +(I) [13:19:42.760] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ad6c19dc9de06ac43345b7db50dfc1a6ca34fadca08fa7c798f463f33f7cb038 +(I) [13:19:48.014] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=484a5dea69d55bbf9f82d1fdf3c1ff0562ac288f11c4f6f8aca6a5d679a6fae7 +(I) [13:19:49.005] [000022800]: Local user framerate is [85.291466] +(I) [13:19:49.005] [000022800]: Local user MinDelay=[23ms], MaxDelay=[81ms], AvgDelay=[65ms], minRTT[116ms], maxRTT[236ms], avgRTT[166ms] +(I) [13:19:51.138] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7465ce90555b5db118561fadc6043ba067bd76cb3598e5bb1a6efbc3c2261914 +(I) [13:19:53.426] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3b7aebbbc3c8d7b0a2c83205f2fd3bc8e3b56e70ad2d700014ae520ec5d170c5 +(I) [13:20:02.003] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=202/0, mdat=384/768, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=25/6, lb_c=0/0, cast=0/0, cdat=176/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:20:03.259] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0d2882594ec47095a04767a51db1c3ace351abdd1bbe9a555ab6d0e404a2c801 +(I) [13:20:07.333] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cb4def265e6e8f26fc02f871db35ac11ca87cbce729457d8c22eb6cbd33d1bdd +(I) [13:20:10.003] [000022800]: Local user framerate is [87.341263] +(I) [13:20:10.003] [000022800]: Local user MinDelay=[23ms], MaxDelay=[95ms], AvgDelay=[64ms], minRTT[113ms], maxRTT[239ms], avgRTT[166ms] +(I) [13:20:10.199] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7266fa2b16be5030f1280bc1a8eb066e2d7a7363fd1626be64133582fd009dd5 +(I) [13:20:12.621] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2113a4df8e297751f780eb35319586f00621bc47d7bef5f7aa8ceb3a43b7aafb +(I) [13:20:13.877] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=827810f2be93d2f6976f9bebe27646f99167877bf814dacd8e0bac2049744f70 +(I) [13:20:15.010] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=63/0, mdat=104/208, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=6/2, lb_c=0/0, cast=0/0, cdat=52/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:20:16.645] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4da07b1706794c7667c9a9845f948fc704be7ab2eb7cf044d76040fa56303213 +(I) [13:20:19.021] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b3165277ca6b7f71dd01c2467a42ea412c6627635858e305680f00db225c5abf +(I) [13:20:19.526] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9368844a6c646745633dec46ccdd2de821aae8ea89803739ce3f1238293da6df +(I) [13:20:27.059] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6666d6e20f39e4d76a5bce06586f0d61ec3c0781b3f5f8ac03ff263ab7fa352b +(I) [13:20:30.475] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e9c962286f79fcb1e70649f84218c323762600582df9b0689fb45cb151de8283 +(I) [13:20:31.009] [000022800]: Local user framerate is [88.269096] +(I) [13:20:31.009] [000022800]: Local user MinDelay=[36ms], MaxDelay=[72ms], AvgDelay=[56ms], minRTT[120ms], maxRTT[237ms], avgRTT[174ms] +(I) [13:20:36.292] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d5f8337f83d4fe543e974aad09faaea17e27b9db999616b75c28fe9325b4e6f4 +(I) [13:20:38.389] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=882ba5543e138a88773c571c41453ca9d196349635f4500fe55fd89b455dd888 +(I) [13:20:41.617] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=297e60dcedbeaa848941651776dafabd3978760e30c586b1a57f8e21cc383aea +(I) [13:20:45.962] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=109a2ea21b66aaf7ad9c4378e9695098ad5f6772267f433d2afd254b877b2dfd +(I) [13:20:48.638] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c76be30d7875ae8dbca2ec63cdd580864faf8288801ba2f38cd566abb123fcb6 +(I) [13:20:52.021] [000022800]: Local user framerate is [94.676323] +(I) [13:20:52.021] [000022800]: Local user MinDelay=[36ms], MaxDelay=[72ms], AvgDelay=[57ms], minRTT[111ms], maxRTT[237ms], avgRTT[172ms] +(I) [13:20:52.065] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=584cad484ec1c7107189aa33a833a406a0bbf69caf67b8a7c05121f41a1a8448 +(I) [13:21:00.472] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e69f8fdf9294c3a51914f89f646ae405f2bd4a032a73f9c78234513e34192e7a +(I) [13:21:03.002] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=220/0, mdat=384/768, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=25/7, lb_c=0/0, cast=0/0, cdat=190/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:21:10.369] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5362eec29a315c550cf4ef7df207d042b687e7eb8c0c6bc6d108f869550921dd +(I) [13:21:13.006] [000022800]: Local user framerate is [92.367661] +(I) [13:21:13.006] [000022800]: Local user MinDelay=[36ms], MaxDelay=[78ms], AvgDelay=[59ms], minRTT[111ms], maxRTT[255ms], avgRTT[172ms] +(I) [13:21:16.001] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=52/0, mdat=104/208, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=5/1, lb_c=0/0, cast=0/0, cdat=47/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:21:20.283] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=079dae9a93c302836e320f23a2c768f4bd4eff5582bfa3c9e8759e433cff684b +(I) [13:21:26.498] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7d47c43e67ca12f34f38a6029bb3334082b281edf5b102b5a2ecddab3001a51f +(I) [13:21:29.569] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8e34976ca812f68407c69de7ba8abf63580819d29314da7dc64dd7c60bc1c7c4 +(I) [13:21:32.308] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5c2a6d8626896ca8e163b93af1d30c315475bb43006205ae0169c19a2c1e3bfb +(I) [13:21:34.003] [000022800]: Local user framerate is [95.945198] +(I) [13:21:34.003] [000022800]: Local user MinDelay=[52ms], MaxDelay=[79ms], AvgDelay=[64ms], minRTT[113ms], maxRTT[235ms], avgRTT[171ms] +(I) [13:21:35.568] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=80b016ec6aad0fb095b417d30c8fd59db61bddddd53267b52c819c3fed2fdc2e +(I) [13:21:36.381] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=982ebe7b06f1713d8f231d49d73f5a4df72f7e4961af2cd68f5e21a62952f849 +(I) [13:21:45.200] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a113f06a76a88eaf88c24df2477b2c47d29baa73c7162b8af226b671a6fcb428 +(I) [13:21:50.241] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3747a2329a25129c977366318d6cbbcfb38310389876f1dd5db75e64e0bd1e39 +(I) [13:21:50.746] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c4d2cb79d2a489c63d334ffe778b6d2c80487a32652473a34a59995ca47fb4c3 +(I) [13:21:51.864] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=bb3948b0a1e596b962c3bd761a95ce166f942e100358c77fd1d4bf6dc0bdbf2e +(I) [13:21:53.142] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=358ef0eaece971effa76b0317156e1039d9017f2b399f02f99e11d6bf92da013 +(I) [13:21:55.006] [000022800]: Local user framerate is [87.123863] +(I) [13:21:55.006] [000022800]: Local user MinDelay=[52ms], MaxDelay=[99ms], AvgDelay=[67ms], minRTT[108ms], maxRTT[256ms], avgRTT[168ms] +(I) [13:21:55.619] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ca571279195357b085fc879402a5af147e268b2c6e553d6c395a1d3e3eeb53be +(I) [13:21:57.997] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b8eecdaa1672b8cf50d04ab106f37bf07890717a49c31c7ffa5173b5e26f0e41 +(I) [13:22:04.008] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=199/0, mdat=384/768, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=25/7, lb_c=0/0, cast=0/0, cdat=166/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:22:05.758] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a4fd73f0058737f9ecff5b75e751471402087f2ec1ad8b5cbfa5dd0161e4170a +(I) [13:22:10.990] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a132e1e77b8a7e036d15815365aa8bcfb4279469febd89cc384f479761f22f0a +(I) [13:22:11.964] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1d8b4f4b60ae6ebba9b9d7022397d117dbe8f1fd2d206389a21f026d8360e6a5 +(I) [13:22:16.006] [000022800]: Local user framerate is [86.641335] +(I) [13:22:16.006] [000022800]: Local user MinDelay=[66ms], MaxDelay=[72ms], AvgDelay=[68ms], minRTT[151ms], maxRTT[167ms], avgRTT[161ms] +(I) [13:22:16.703] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2ac010f341c8c90199268eb2284ff306d7653e010e9d81f8592209b069fe0ad8 +(I) [13:22:17.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=60/0, mdat=104/208, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=6/1, lb_c=0/0, cast=0/0, cdat=53/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:22:17.841] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cb2f493b3562665cfeb0cb697aae96d39483be04e47eb92b48ef49631dc15382 +(I) [13:22:28.236] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=aa39c726fdd0c8cc8eecf71cb7571c01509f29d23c4181beb94f9019ac7383e6 +(I) [13:22:29.990] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fd696a8b3a9933945a561f9c0710f6e3034b4eff872977888553685548ada368 +(I) [13:22:34.838] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ddf62b286fc52a4f3e093007d0aa219b52976b22750b39cc5e028004d23bba77 +(I) [13:22:37.005] [000022800]: Local user framerate is [91.777054] +(I) [13:22:37.005] [000022800]: Local user MinDelay=[56ms], MaxDelay=[88ms], AvgDelay=[69ms], minRTT[123ms], maxRTT[281ms], avgRTT[164ms] +(I) [13:22:42.950] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=bbdd9e771c72d35bf2d2a08b3d8bf7f9f14e734e09b897bd4f8f95ec70a425fc +(I) [13:22:45.769] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8b5ffafffbc5a6a8dd6e83e6bc34ee40fc3d8356d7ca066bdd91b31a5ef7121e +(I) [13:22:50.177] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=11840f44ddc2128e6d9a454287e9a20ffc7353bb3110c454244e48e2cb6b91f5 +(I) [13:22:52.514] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=62a53d2da3a240d0ac900092e92bfcce30ce2983a661cb8ff852e67d121fa189 +(I) [13:22:58.004] [000022800]: Local user framerate is [89.450798] +(I) [13:22:58.004] [000022800]: Local user MinDelay=[56ms], MaxDelay=[88ms], AvgDelay=[69ms], minRTT[113ms], maxRTT[286ms], avgRTT[168ms] +(I) [13:22:58.105] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3c2fea19743cab75b650cd6b3659321fbdf8fbfc555efcf39711bec4a204d2bc +(I) [13:23:02.453] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=620a50ca8beefb6acf623846fa1127f11e73377b86a6a5a0257db070227479f9 +(I) [13:23:03.290] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d0bea265414ac4adf18fc2da0da1fc73b82763cbd7b177cfd20d322b2340af5e +(I) [13:23:05.008] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=181/0, mdat=384/768, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=25/7, lb_c=0/0, cast=0/0, cdat=153/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:23:10.119] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c5908772920aa6c766b17bb7e8bb104c87e70b15414e007046d8fff8c32137a3 +(I) [13:23:10.954] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7559c1ba15f89bcf96fe827577e289b6b2b0ecdbec9612eaf60e5412587b2411 +(I) [13:23:12.976] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=727c6e644f0da2d5b0e5fdadb30b23d8fcec10e84a416892fe84f9b42c39a008 +(I) [13:23:18.010] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=39/0, mdat=104/208, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=7/2, lb_c=0/0, cast=0/0, cdat=35/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:23:18.502] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=034219fae58d6008617d108b5eb1ed4910dfb29c2a524e98347a7d1257ae9518 +(I) [13:23:19.006] [000022800]: Local user framerate is [89.777550] +(I) [13:23:19.006] [000022800]: Local user MinDelay=[51ms], MaxDelay=[70ms], AvgDelay=[59ms], minRTT[147ms], maxRTT[234ms], avgRTT[175ms] +(I) [13:23:19.104] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7af3e774d3ddf8cb40196c0faa9f752f196ef9589b7a9b47a02bca08954ac579 +(I) [13:23:20.434] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=020835814895fd05b973f18cf557f64e3a8078469b61036195e8fbac5a6df072 +(I) [13:23:27.824] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f343a8b9adb7beb2c36ea8a0a5620ba6ad37bc9c55d9fff948d96eee898fdeda +(I) [13:23:32.528] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=907b50e5b77eed4e31df1a1b2d0e4c88df2def27266a1c7201c6994d9284a7ba +(I) [13:23:38.755] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f4b538f14bc683079c26aa9d686ced4f11e4d5d524ac6112dcd666edffc3ec8e +(I) [13:23:40.003] [000022800]: Local user framerate is [86.465408] +(I) [13:23:40.003] [000022800]: Local user MinDelay=[44ms], MaxDelay=[76ms], AvgDelay=[61ms], minRTT[114ms], maxRTT[234ms], avgRTT[166ms] +(I) [13:23:40.118] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=305a1aee8db84690ae567f02d0473a8f67f3fab4965b242dba1b71d3d96aafe6 +(I) [13:23:41.503] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fc41ee53ae7942087d1a95d45f5c9382f6843bd2243c6a314fa3ea576a40f186 +(I) [13:23:42.054] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=baece6fa6c7171cf7045193c71ce15529c35b35d15bb826bf604b992de4b173d +(I) [13:23:44.373] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=41aefe58e9bada963f2a5d7e88781e9e338305cf97566343d65051a62115747d +(I) [13:23:50.497] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=90a7c72dc5fbef063056983e853ae24e719f484e6c2d5ac9e69d1c3c967e1a03 +(I) [13:23:59.500] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=13775bed1ce9f8ffbfcff77fac77ffd7f0a7f430f12e2d42a22d47d31ef7aca1 +(I) [13:24:01.004] [000022800]: Local user framerate is [83.837425] +(I) [13:24:01.004] [000022800]: Local user MinDelay=[44ms], MaxDelay=[80ms], AvgDelay=[63ms], minRTT[111ms], maxRTT[244ms], avgRTT[167ms] +(I) [13:24:05.300] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6274f2c30d04cb09eaa8cde700270f0c8a63edc0aceac026ec71bc01a3716cd7 +(I) [13:24:06.003] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=166/0, mdat=383/766, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=23/6, lb_c=0/0, cast=0/0, cdat=149/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:24:06.521] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=563cc4d52a51f2e9b7ccf50bf5bb28215b22551be81bd3cf5c517bb59f56133a +(I) [13:24:07.199] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f416819be169281d2c46bfa1db145008753a0221d39037f23b74d55fe6841563 +(I) [13:24:09.475] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=14f1ee92a4da2d3ab14878592ea8c0e3e6d13f559f16fe723728ae4bac9f9607 +(I) [13:24:10.128] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a826cf9d1997126827f8de6274fa80252d083941b4e4cd54119a9e5ac4c60597 +(I) [13:24:14.900] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a79999f9990396471835e8532829c1a47a08338eaf6ad55d187a767cb684c158 +(I) [13:24:15.949] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1f5af5d3067d33a0b45efc8e972dedf26815d66d117817dbbe1b8037015c79da +(I) [13:24:18.759] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ac5f59ccdffb80c80918d9697bd56475fd5a2d002fe4182bb260c07682b816e2 +(I) [13:24:19.005] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=54/0, mdat=104/208, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=7/2, lb_c=0/0, cast=0/0, cdat=49/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:24:22.002] [000022800]: Local user framerate is [86.699997] +(I) [13:24:22.003] [000022800]: Local user MinDelay=[55ms], MaxDelay=[80ms], AvgDelay=[66ms], minRTT[120ms], maxRTT[232ms], avgRTT[168ms] +(I) [13:24:22.666] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=72869d9c6e7f2f7184e4886e40c623bd017cf7aa21ad9b03230f93301712c368 +(I) [13:24:28.081] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b88df10a65dbedff9659732537a13ac926819a960c9e08a9b58a9a2f1b2d1425 +(I) [13:24:29.156] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ca25338cfecaaa3fd2f241e1b7f333f0dfe76f287082982f6fc61ec40686cd21 +(I) [13:24:37.877] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f27df12237d79247ce40eb3ef55269960ceabfbe97cf00893a8d09608d905fb3 +(I) [13:24:42.899] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cad2a4f0705888d4019497780c3086bdb618f0dcb569c8cab828b8bede4c5bbb +(I) [13:24:43.006] [000022800]: Local user framerate is [82.195885] +(I) [13:24:43.006] [000022800]: Local user MinDelay=[52ms], MaxDelay=[84ms], AvgDelay=[68ms], minRTT[113ms], maxRTT[234ms], avgRTT[164ms] +(I) [13:24:56.506] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=47bdf6a23be0cd1b76e41ed38ca43663fd895e12fa586ff31fa33f2d3fa534e3 +(I) [13:25:04.015] [000022800]: Local user framerate is [93.017433] +(I) [13:25:04.015] [000022800]: Local user MinDelay=[52ms], MaxDelay=[88ms], AvgDelay=[68ms], minRTT[113ms], maxRTT[236ms], avgRTT[165ms] +(I) [13:25:04.404] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=76bed8a2fd262647d3e7ed26be767bb4664541a8d854ee314064c185fd169231 +(I) [13:25:07.010] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=176/0, mdat=384/768, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=23/6, lb_c=0/0, cast=0/0, cdat=146/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:25:09.776] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c6578f7929ad7e43f55148daf79ab81639db3230e2dfbbce9830dc09c7e71669 +(I) [13:25:14.496] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=95ba6b29010fcc654e5208ea18a9ed3fb0fe463811c321bbf23d4713d2a02a8d +(I) [13:25:15.561] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6a313c04720c259d74fd20b1807b9114f457414fdeeb09e9925b49dc1276400e +(I) [13:25:18.789] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b088d4518cc7fd814f92b98a1f53fc5a180a39d1ee33defd0c68da47256d27ab +(I) [13:25:20.006] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=46/0, mdat=104/208, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=7/2, lb_c=0/0, cast=0/0, cdat=43/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:25:21.715] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5914d53174ecacc69a9383cc63737ff14858d2814919fc3eec3cac550319902f +(I) [13:25:25.012] [000022800]: Local user framerate is [93.967102] +(I) [13:25:25.012] [000022800]: Local user MinDelay=[50ms], MaxDelay=[75ms], AvgDelay=[62ms], minRTT[111ms], maxRTT[235ms], avgRTT[168ms] +(I) [13:25:25.432] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6275a036ed9d51aa7ea7949cc8a65d5ee35d8ea2e24b3dcbabe8fdccaaedeeb5 +(I) [13:25:27.582] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d72e1412e0b1a738df9d10582ebf93974f957be8c19b9cb245c36511c7cea9eb +(I) [13:25:31.825] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5aa0a6363036c1970bfa35f4f11c3c9cbf9d7748fc7bc19a861d585e9859812c +(I) [13:25:40.801] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=be0dcec818f53c73568f58c34de34a912e6e3c6a2c2abca56a440397c47d1635 +(I) [13:25:42.365] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fadbdfd33b2007aa7f3910af5666f394dac5a86797e86cafd12742cd8638d62c +(I) [13:25:46.002] [000022800]: Local user framerate is [87.223831] +(I) [13:25:46.002] [000022800]: Local user MinDelay=[47ms], MaxDelay=[81ms], AvgDelay=[63ms], minRTT[111ms], maxRTT[249ms], avgRTT[167ms] +(I) [13:25:46.432] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=05b387dfba7fa31e6f0ce1e9e0054a7c384f208be41c1044ae18793c29305d60 +(I) [13:25:47.418] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=adda8953a9a0ca770a424cf8d4e856302d208803bdd0f848acfbb661f46ff671 +(I) [13:25:48.424] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=029b150ee756157a4d5e7315f37fd94cc4a7b3da55fa3fdc0ef4fa4335414348 +(I) [13:25:58.719] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=608035c248ccdf8858bf29c82bbc260af81f2316230065bbe00e565e0a54555a +(I) [13:26:00.585] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=bc3de47b0056cd27deb28c4612ef3eedc91b71a3ebfac0911a094cbea3b31ca2 +(I) [13:26:02.802] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7bff7bc971f8bfad6d6c9d19a01b7bf69c23fdb90a4e8961c8e700dd81e70a9a +(I) [13:26:07.001] [000022800]: Local user framerate is [87.156418] +(I) [13:26:07.001] [000022800]: Local user MinDelay=[47ms], MaxDelay=[88ms], AvgDelay=[64ms], minRTT[111ms], maxRTT[257ms], avgRTT[168ms] +(I) [13:26:08.009] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=195/0, mdat=384/768, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=23/6, lb_c=0/0, cast=0/0, cdat=164/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:26:14.336] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=94cbff81592044c4f7db177da37f7baf7f705b3dcca185d5048d220bfc73cc28 +(I) [13:26:16.192] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=dd4dabdd9e21c24e0079ffdacb9bdf8d54619eadbfae4b19dac3d5fac6f391cf +(I) [13:26:17.956] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cb57c6f08b3643029b58054900228d1fabdee17ba8fe687b3272fe3e62980ee4 +(I) [13:26:18.766] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7ede843b4bb303bb153a8e6be21ee58b044f50d8e5e56e117114ddd698c362de +(I) [13:26:19.595] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1f24856533d88ba50d5100d2e7a8891002ad4c5ee179f3ab974c6b3eb2d5f77a +(I) [13:26:20.323] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e8359bbc52feddf1defcf93a7024d6c51305fe00eb8e9757ef2c0eaf98d7978b +(I) [13:26:21.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=57/0, mdat=104/208, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=8/2, lb_c=0/0, cast=0/0, cdat=48/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:26:23.891] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e9a948f6444d2a8ff3890da78f267cf9ba6cbfd2c8ad239f0a9d2e75a35326df +(I) [13:26:27.622] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=021f8f01dcfdea22e6b0ce2adca0f2cf0bdd9521f3ee3c490340eb821f868b76 +(I) [13:26:28.001] [000022800]: Local user framerate is [93.557892] +(I) [13:26:28.001] [000022800]: Local user MinDelay=[46ms], MaxDelay=[70ms], AvgDelay=[59ms], minRTT[118ms], maxRTT[287ms], avgRTT[175ms] +(I) [13:26:30.447] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9b27207520ae8487ecf08b3462c117e85dd9c8572c6fdd9a1433cbd1d1ec80eb +(I) [13:26:34.585] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5518e3bef1f42038c412be211841057c935e56516d713b3e6ef99fc33179db3a +(I) [13:26:38.355] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fce61279dcc1c2510049ffbca37fa37d6d6d6842bcd8fe215ec305ba70a853d1 +(I) [13:26:41.278] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3eec1795626c642c30ff3045783b422224a7d5ed3016022b5c649da53a756791 +(I) [13:26:49.007] [000022800]: Local user framerate is [91.000000] +(I) [13:26:49.007] [000022800]: Local user MinDelay=[45ms], MaxDelay=[83ms], AvgDelay=[60ms], minRTT[118ms], maxRTT[287ms], avgRTT[174ms] +(I) [13:26:55.493] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=578f4c3e98b4c075caaf83d49ebfb983a5206e82949374165ef0f38db64b7815 +(I) [13:26:58.389] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4b3a039d778fca9dbcf6213592f8d9c059fc05e4895c5a9cd4d9cb4723992088 +(I) [13:27:00.435] [000022800]: GameApp::SetTargetState : new (UnloadedGame) old (Uninitialized) +(I) [13:27:00.455] [000022800]: GAME -- Frame 10919 - SimKillPlayer - Destroying SimPlayer 1000, reason 3 +(I) [13:27:00.455] [000022800]: Player [Wolfsindis] killed on game tick [10919] due to [network abort] +(I) [13:27:00.473] [000022800]: GameApp::SetState : new (UnloadingGame) old (Game) +(I) [13:27:00.475] [000022800]: Report sent for profileID[102126] -> race=[137123], result=[3], XP Gain=[14685] +(I) [13:27:00.475] [000022800]: Report sent for profileID[3264] -> race=[203852], result=[3], XP Gain=[7594] +(I) [13:27:00.519] [000022800]: Party::SetStatus - S_CONFIGURING +(I) [13:27:00.527] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=faa5e077387a347256abd30eac68f411cda666f4efc68f154f249428ec535922 +(I) [13:27:00.527] [000022800]: Sending matchinfo change #11 +(E) [13:27:00.556] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:27:01.037] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8d113b434d050ee658f3fc1739a8963f0fd8acc8d6c57c6b86599079ed7410fe +(I) [13:27:01.051] [000022800]: MPMatchSetup::OnMatchEvent - MET_ReportResults - result [0] +(I) [13:27:01.051] [000022800]: GameObjController - OnMatchEvent: event type 9 +(I) [13:27:01.467] [000022800]: GameObj::ShutdownGameObj +(I) [13:27:01.467] [000022800]: GetMaxFrameTimeFromProfile: players=2 expected FPS=100.000000, bars=0, max avg=0.000, sd=0.000, 0 samples = +(I) [13:27:01.467] [000022800]: PerformanceRecorder::EndRecording - game size=2, max average=0.012166, worst frame=0.010000 +(I) [13:27:01.467] [000022800]: Recording: No [2 players] + +(I) [13:27:01.467] [000022800]: Max/Avg: 0.01, 0.01 sec (fps=82.20, 99.66) (68 samples) + +(I) [13:27:01.467] [000022800]: Bars: 0 + +(I) [13:27:01.467] [000022800]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_seconds_played] +(I) [13:27:01.468] [000022800]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_units_produced] +(I) [13:27:01.468] [000022800]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_units_killed] +(I) [13:27:01.468] [000022800]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_units_lost] +(I) [13:27:01.474] [000022800]: StatArtWarningsCount 0 +(I) [13:27:01.474] [000022800]: StatDataWarningsCount 0 +(I) [13:27:01.935] [000022800]: GameApp::SetState : new (UnloadedGame) old (UnloadingGame) +(I) [13:27:01.935] [000022800]: GameApp::SetTargetState : new (Uninitialized) old (UnloadedGame) +(I) [13:27:01.945] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a7fad656344a6c3598c144d9989a83031812b659a236951a377284a17807d308 +(I) [13:27:01.946] [000022800]: SessionID : 5981ab - Disconnect called with reasonID 1000 - MatchSetup::Disconnect +(I) [13:27:01.946] [000022800]: MatchSetupManager: Removed queued match [cliff_crossing_2p] Queue is now [0] +(I) [13:27:01.946] [000022800]: SessionID : 5981ab - Disconnect called with reasonID 1000 - MatchSetup::Disconnect +(I) [13:27:01.953] [000022800]: Disconnect process already running +(I) [13:27:01.956] [000022800]: SessionID : 598182 - Disconnect called with reasonID 1000 - Destroying Party +(E) [13:27:01.983] [000022800]: SetVisible called while !IsConnected +(E) [13:27:01.997] [000022800]: SetVisible called while !IsConnected +(I) [13:27:02.452] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=602a8dbca0187ccd49d06c1dbf02d24424ef2c0dd035e10b3b24da55c4accc31 +(I) [13:27:03.151] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:03.151] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:03.151] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:03.151] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:03.151] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:03.151] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:03.151] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:03.151] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:03.151] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:03.151] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:03.151] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:03.151] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:03.151] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:03.151] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:03.151] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:03.151] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:03.151] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:03.151] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:03.151] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:03.151] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:03.151] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:03.151] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:03.151] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:03.151] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:03.151] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:03.151] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:03.151] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:03.429] [000022800]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [13:27:03.429] [000022800]: WorldwidePartyService::PeerRemove, Removing peer ID: 2 +(I) [13:27:03.429] [000022800]: peerremove - peerIDRemoved=102126, reasonID=119, reason debug hint - Forcing peers to disconnect +(I) [13:27:03.429] [000022800]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [13:27:03.429] [000022800]: WorldwidePartyService::PeerRemove, Removing peer ID: 1 +(I) [13:27:03.429] [000022800]: peerremove - peerIDRemoved=3264, reasonID=1000, reason debug hint - MatchSetup::Disconnect +(E) [13:27:03.430] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.441] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.452] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.463] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.474] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.485] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.495] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [13:27:03.500] [000022800]: PeerRemoveAll - flushing local session peer data +(I) [13:27:03.500] [000022800]: LeaveSessionInternal - no action taken, needLeave=0, service=0 +(I) [13:27:03.500] [000022800]: Destroyed Matchinfo +(E) [13:27:03.501] [000022800]: Socks::Free: Socket 0/6564 did not close properly before being freed. +(I) [13:27:03.501] [000022800]: OnDestroyPartyNotification - partyID = 5865899, prevID = -1 +(I) [13:27:03.501] [000022800]: OnDestroyPartyNotification - partyID = 5865899, prevID = -1 +(I) [13:27:03.671] [000022800]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [13:27:03.671] [000022800]: WorldwidePartyService::PeerRemove, Removing peer ID: 1 +(I) [13:27:03.671] [000022800]: peerremove - peerIDRemoved=3264, reasonID=1000, reason debug hint - Destroying Party +(E) [13:27:03.677] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.688] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.699] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.709] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.720] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.731] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.741] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.752] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.763] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.774] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.785] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.796] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.806] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.816] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.827] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.837] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.848] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.858] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.869] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.881] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.891] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.902] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.912] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.923] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.933] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.944] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.955] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.965] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.976] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.986] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:03.997] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:04.008] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [13:27:04.008] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:04.008] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:04.008] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:04.008] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:04.008] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:04.008] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:04.008] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(E) [13:27:04.019] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:04.029] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:04.040] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:04.050] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:04.061] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:04.071] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:04.082] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:04.093] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:04.103] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:04.114] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:04.124] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:04.135] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:04.146] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:04.157] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:04.168] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:04.178] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:04.189] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:04.200] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:27:04.210] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [13:27:04.213] [000022800]: PeerRemoveAll - flushing local session peer data +(I) [13:27:04.213] [000022800]: LeaveSessionInternal - no action taken, needLeave=0, service=0 +(I) [13:27:04.213] [000022800]: Destroyed Matchinfo +(E) [13:27:04.213] [000022800]: Socks::Free: Socket 0/6588 did not close properly before being freed. +(I) [13:27:04.213] [000022800]: OnDestroyPartyNotification - partyID = 5865858, prevID = -1 +(I) [13:27:04.213] [000022800]: OnDestroyPartyNotification - partyID = 5865858, prevID = -1 +(I) [13:27:05.018] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:05.032] [000022800]: GetPartyStatsByID found 1 teams for user ID 3264 +(I) [13:27:06.644] [000023200]: Read bytes [0,"AvatarStatsUpdatedMessage",3264,[[[4,3264,64,"",1680521225]]]] +(I) [13:27:06.644] [000023200]: Read bytes [0,"AvatarStatsUpdatedMessage",3264,[[[6,3264,83211,"",1680521225]]]] +(I) [13:27:06.644] [000023200]: Read bytes [0,"AvatarStatsUpdatedMessage",3264,[[[14,3264,14237,"",1680521225]]]] +(I) [13:27:06.644] [000023200]: Read bytes [0,"GameResultNotificationMessage",3264,[[[3264,20,203852,1,[0],15990,[["unitprod",32],["vvetrank",10],["cabil",1],["dmgdone",7305],["plost",22],["svetrank",4],["reqmax",0],["cpearn",4],["reqspnt",0],["powearn",0],["blost",1],["elitekill",2],["edeaths",89],["structdmg",0],["pcap",28],["inactperiod",24],["lowintperiod",0],["precap",20],["sqkill",3],["popmax",0],["powspnt",0],["sqprod",10],["bprod",8],["svetxp",8000],["vabnd",0],["addonkill",56],["totalcmds",2473],["gammaspnt",0],["vkill",0],["objdmh",0],["abil",99],["sqlost",4],["vcap",0],["vlost",3],["gt",1365],["upg",135],["vvetxp",11900],["reqearn",0],["vp1",0],["vp0",0],["erein",80],["cflags",0],["wpnpu",0],["ekills",58],["powmax",0],["vprod",3]],0,0,[],null,[],[],[],[],[],[]],[102126,20,137123,0,[0],58628,[["unitprod",45],["vvetrank",16],["cabil",2],["dmgdone",10891],["plost",20],["svetrank",2],["reqmax",0],["cpearn",5],["reqspnt",0],["powearn",0],["blost",3],["elitekill",0],["edeaths",62],["structdmg",0],["pcap",31],["inactperiod",20],["lowintperiod",0],["precap",22],["sqkill",4],["popmax",0],["powspnt",0],["sqprod",11],["bprod",10],["svetxp",3300],["vabnd",0],["addonkill",84],["totalcmds",1226],["gammaspnt",0],["vkill",3],["objdmh",0],["abil",63],["sqlost",3],["vcap",0],["vlost",0],["gt",1370],["upg",59],["vvetxp",19750],["reqearn",0],["vp1",0],["vp0",0],["erein",52],["cflags",0],["wpnpu",0],["ekills",84],["powmax",0],["vprod",2]],0,10,[],null,[],[],[],[],[],[]]],[[15990,2130257,8,5,-2,0,0,736,2261,334,1076,7,1126,1680521225],[58628,2130261,35,18,5,0,0,132,2842,24,687,11,1304,1680521225]],[[4,3264,64,"",1680519603],[6,3264,83211,"",1680519603],[14,3264,14237,"",1680519603],[7,102126,53,"",1680477962],[8,102126,35,"",1680477962],[9,102126,69068,"",1680477962],[15,102126,69068,"",1680477962]],5865899,"",[]]] +(I) [13:27:06.646] [000022800]: RNT_StatsUpdate: Loss notification, profileID 3264, race =203852, level=7, ranking=736 +(I) [13:27:06.646] [000022800]: RNT_StatsUpdate: Win notification, profileID 102126, race =137123, level=11, ranking=132 +(I) [13:27:06.850] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:06.850] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:09.819] [000022800]: starting online hosting +(I) [13:27:10.324] [000022800]: OnlineHostAsync success +(I) [13:27:10.324] [000022800]: Created Matchinfo for sessionID 5867236 +(I) [13:27:10.324] [000022800]: OnJoinAdvertisementSuccess - joined online match, server leave notification required +(I) [13:27:10.324] [000022800]: starting local hosting +(I) [13:27:10.324] [000022800]: ValidateCustomData: called with 5587 bytes of custom data +(I) [13:27:10.324] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:10.325] [000022800]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [13:27:10.325] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:27:10.334] [000022800]: Sending matchinfo change #2 +(I) [13:27:10.334] [000022800]: HostAsync - got operation info 0:SessionOperationInfo::SUCCESS +(I) [13:27:10.337] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=1/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=1/0, Pdel=0/0, drop=0/0, data=1/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=3/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=3/0, lb_p=0/0, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=1/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:27:10.341] [000022800]: hosting - Session is connected +(E) [13:27:10.434] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:27:10.569] [000022800]: CreateSteamSessionAsync::Process: Successfully created lobby; lobbyId=109775243303907945 +(I) [13:27:11.319] [000023200]: Read bytes [0,"PlatformSessionUpdateMessage",3264,[5867236,"0",109775243303907945,""]] +(I) [13:27:11.320] [000022800]: Sending matchinfo change #3 +(I) [13:27:11.355] [000022800]: HostAsync - completed with HostResult = 0 +(I) [13:27:11.355] [000022800]: Party::SetHostJoinResult - 0 +(I) [13:27:11.356] [000022800]: Party::SetStatus - S_CONFIGURING +(I) [13:27:11.356] [000022800]: WorldwideAutomatchService::OnHostComplete - automatcher is no longer active - stopPollPending 0 automatchPollID 18446744073709551615 +(E) [13:27:11.435] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:27:11.448] [000022800]: Sending matchinfo change #4 +(E) [13:27:11.562] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:27:15.745] [000022800]: Sending matchinfo change #5 +(E) [13:27:15.816] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:27:16.391] [000022800]: Sending matchinfo change #6 +(E) [13:27:16.441] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:27:16.729] [000022800]: Sending matchinfo change #7 +(E) [13:27:16.822] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:27:16.884] [000022800]: Sending matchinfo change #8 +(E) [13:27:16.941] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:27:17.012] [000022800]: Sending matchinfo change #9 +(E) [13:27:17.068] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:27:17.328] [000022800]: Sending matchinfo change #10 +(E) [13:27:17.434] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:27:20.009] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=740aa95bdd1a21bb8057f3ed0113c99e24ad1c0ed1d1e4ceb080cb14d011b5fd +(I) [13:27:35.113] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [13:27:35.119] [000022800]: Sending matchinfo change #12 +(E) [13:27:35.197] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:27:35.310] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [13:27:35.310] [000022800]: Sending matchinfo change #13 +(E) [13:27:35.450] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:27:46.004] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [13:27:46.201] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [13:27:55.012] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=236e2e5ecf08205ed6fbd76fae0a0e69de71388ea790f89830c67b880d227c90 +(I) [13:27:57.002] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [13:27:57.198] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [13:28:08.002] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [13:28:08.192] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [13:28:11.004] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/2, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/2, Pdel=0/0, drop=0/0, data=10/22, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=10/26, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=10/12, lb_p=22/4, lb_c=0/1, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:28:17.009] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=180f26cb1487e090641eb14cf71cd3a5f31bd5d53e94f998caeece32d475b346 +(I) [13:28:19.003] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [13:28:19.192] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [13:28:30.003] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [13:28:30.207] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [13:28:36.616] [000023200]: Read bytes [0,"Automatch2GameMessage",3264,["210125","5867311","cliff_crossing_2p","203852","1","2","2","1","authtoken","3.120.213.190",27004,27114,27214,[[5867311,3264,735,15990,203852,1,"/10.0.70.222"],[5867311,210125,1196,77758,198437,0,"/10.0.70.19"]],""]] +(I) [13:28:36.620] [000022800]: AutomatchInternal - OnJoinAutomatch - Server told us join matchID=5867311, hostProfileID=210125 +(I) [13:28:36.620] [000022800]: AutomatchInternal - join request validated, attempting +(I) [13:28:37.078] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:28:37.107] [000022800]: JoinAsync: Starting AsyncJob... +(I) [13:28:37.318] [000022800]: OnlineJoinAsync success +(I) [13:28:37.318] [000022800]: Created Matchinfo for sessionID 5867311 +(I) [13:28:37.318] [000022800]: OnJoinAdvertisementSuccess - joined online match, server leave notification required +(I) [13:28:37.811] [000022800]: ValidateCustomData: called with 2837 bytes of custom data +(I) [13:28:37.811] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:28:37.812] [000022800]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [13:28:37.812] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:28:37.812] [000022800]: ValidateCustomData: called with 2780 bytes of custom data +(I) [13:28:37.812] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:28:37.812] [000022800]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [13:28:37.812] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:28:37.819] [000022800]: Accepted matchInfo updated 41 from host +(I) [13:28:37.820] [000022800]: JoinAsync - got operation info 0:SessionOperationInfo::SUCCESS +(I) [13:28:37.828] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=1/1, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/4, Pdel=0/0, drop=0/0, data=1/2, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=2/7, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=2/3, lb_p=0/0, lb_c=0/1, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(E) [13:28:38.076] [000022800]: JoinSteamSessionAsync::Process: Steam join lobby completed; failed=0 failureReason=-1 +(E) [13:28:38.076] [000022800]: JoinSteamSessionAsync::OnLobbyEnter: Error joining lobby; lobbyId=0 ioError=1 response=0 +(E) [13:28:38.090] [000022800]: JoinAsync: failed to join platform session. Continuing anyway +(I) [13:28:38.090] [000022800]: JoinAsync - completed with JoinResult = 0 +(I) [13:28:38.090] [000022800]: JoinAsync - completed with JoinResult = 0:AdvertisementJoinEvent::R_Success +(I) [13:28:38.090] [000022800]: Creating an RLink chat channel (not a multiplayer game). +(I) [13:28:38.090] [000022800]: WorldwideAutomatch2Service::OnJoinComplete - Completed Join with joinResult=0 matchID=5867311 +(I) [13:28:38.090] [000022800]: JoinAsync: AsyncJob Complete... +(I) [13:28:38.090] [000022800]: Sending matchinfo change #14 +(E) [13:28:38.246] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:28:38.321] [000022800]: WorldwideAutomatch2Service::Process - Got into game successfully, 2 players present, got correct slot settings - setting metadata +(I) [13:28:38.576] [000022800]: Accepted matchInfo updated 42 from host +(I) [13:28:39.015] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=73b2e36dde7733abb7283cf24d60164ad1686a46d298919bd5621bdbff10ae33 +(I) [13:28:41.006] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [13:28:41.195] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [13:28:42.001] [000022800]: WorldwideAutomatch2Service::Process - Waiting, only 0 players ready +(I) [13:28:46.000] [000022800]: WorldwideAutomatch2Service::Process - Waiting, only 0 players ready +(I) [13:28:48.008] [000022800]: Party::SetStatus - S_PLAYING +(I) [13:28:48.032] [000022800]: Sending matchinfo change #15 +(E) [13:28:48.115] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:28:49.325] [000022800]: Accepted matchInfo updated 43 from host +(I) [13:28:50.004] [000022800]: WorldwideAutomatch2Service::Process - Got into game successfully, 2 players present, got correct slot settings - readying up +(I) [13:28:50.004] [000022800]: WorldwidePartyService::RequestReady: Sending PlayerReadyRequest; profileID=3264 isReady=1 isSuccessful=1 +(I) [13:28:50.194] [000022800]: Accepted matchInfo updated 44 from host +(I) [13:28:51.446] [000022800]: Accepted matchInfo updated 45 from host +(I) [13:28:51.446] [000022800]: WorldwideAutomatchService::OnStartComplete - detected successful game start +(I) [13:28:51.446] [000022800]: Match Started - [210125 /steam/76561198007688779], slot = 0, ranking = 1196 +(I) [13:28:51.446] [000022800]: Match Started - [3264 /steam/76561198023526153], slot = 1, ranking = 735 +(I) [13:28:51.774] [000023200]: Read bytes [0,"MatchStartMessage",3264,[[[210125,["2068341","2068340"]],[3264,["2068341","2068340"]]],[["210125","198437"],["3264","203852"]],1680521331,[["210125",[[9962115,104,452654,210125,1,0,"{}",1677190071,2,-1,19,2147483647],[9962143,1,453412,210125,1,0,"{}",1677190071,4,-1,3,2147483647],[9962114,94,452655,210125,1,0,"{}",1677190071,6,-1,19,2147483647],[9962099,105,454502,210125,1,0,"{\"att\":{\"is_new\":{\"val\":\"0\"}},\"epos\":\"23\",\"eslot\":\"23\",\"dlc\":1}",1677190072,9962115,-1,19,-1],[9962123,105,453294,210125,1,0,"{\"epos\":\"0\",\"eslot\":\"0\"}",1677190071,9962115,-1,19,2147483647],[9962124,105,453390,210125,1,0,"{\"epos\":\"1\",\"eslot\":\"1\"}",1677190071,9962115,-1,19,2147483647],[9962125,105,453430,210125,1,0,"{\"epos\":\"2\",\"eslot\":\"2\"}",1677190071,9962115,-1,19,2147483647],[9962185,105,454134,210125,1,0,"{\"epos\":\"4\",\"eslot\":\"4\"}",1677190071,9962115,-1,19,2147483647],[9962186,105,454129,210125,1,0,"{\"epos\":\"21\",\"eslot\":\"21\"}",1677190071,9962115,-1,19,2147483647],[9962187,105,454130,210125,1,0,"{\"epos\":\"22\",\"eslot\":\"22\"}",1677190071,9962115,-1,19,2147483647],[9962189,105,454135,210125,1,0,"{\"epos\":\"19\",\"eslot\":\"19\"}",1677190071,9962115,-1,19,2147483647],[9962190,105,454136,210125,1,0,"{\"epos\":\"5\",\"eslot\":\"5\"}",1677190071,9962115,-1,19,2147483647],[9962191,105,454137,210125,1,0,"{\"epos\":\"20\",\"eslot\":\"20\"}",1677190071,9962115,-1,19,2147483647],[9962192,105,454133,210125,1,0,"{\"epos\":\"3\",\"eslot\":\"3\"}",1677190071,9962115,-1,19,2147483647],[9962193,105,454139,210125,1,0,"{\"epos\":\"8\",\"eslot\":\"8\"}",1677190071,9962115,-1,19,2147483647],[9962194,105,454150,210125,1,0,"{\"epos\":\"9\",\"eslot\":\"9\"}",1677190071,9962115,-1,19,2147483647],[9962195,105,454149,210125,1,0,"{\"epos\":\"10\",\"eslot\":\"10\"}",1677190071,9962115,-1,19,2147483647],[9962196,105,454138,210125,1,0,"{\"epos\":\"11\",\"eslot\":\"11\"}",1677190071,9962115,-1,19,2147483647],[9962197,105,454142,210125,1,0,"{\"epos\":\"12\",\"eslot\":\"12\"}",1677190071,9962115,-1,19,2147483647],[9962198,105,454141,210125,1,0,"{\"epos\":\"13\",\"eslot\":\"13\"}",1677190071,9962115,-1,19,2147483647],[9962199,105,454143,210125,1,0,"{\"epos\":\"15\",\"eslot\":\"15\"}",1677190071,9962115,-1,19,2147483647],[9962200,105,454140,210125,1,0,"{\"epos\":\"16\",\"eslot\":\"16\"}",1677190071,9962115,-1,19,2147483647],[9962201,105,454148,210125,1,0,"{\"epos\":\"6\",\"eslot\":\"6\"}",1677190071,9962115,-1,19,2147483647],[9962202,105,454144,210125,1,0,"{\"epos\":\"17\",\"eslot\":\"17\"}",1677190071,9962115,-1,19,2147483647],[9962203,105,454145,210125,1,0,"{\"epos\":\"18\",\"eslot\":\"18\"}",1677190071,9962115,-1,19,2147483647],[9962204,105,454146,210125,1,0,"{\"epos\":\"7\",\"eslot\":\"7\"}",1677190071,9962115,-1,19,2147483647],[9962226,105,454534,210125,1,0,"{\"epos\":\"24\",\"eslot\":\"24\"}",1677190071,9962115,-1,19,2147483647],[9962227,105,454535,210125,1,0,"{\"epos\":\"25\",\"eslot\":\"25\"}",1677190071,9962115,-1,19,2147483647],[42982678,5,454132,210125,1,0,"{\"epos\":\"26\",\"eslot\":\"26\"}",1679945617,9962115,-1,19,-1],[42982679,5,455250,210125,1,0,"{\"epos\":\"27\",\"eslot\":\"27\"}",1679945617,9962115,-1,19,-1],[42982680,5,455277,210125,1,0,"{\"epos\":\"28\",\"eslot\":\"28\"}",1679945617,9962115,-1,19,-1],[9962100,1,454524,210125,1,0,"{\"epos\":\"0\",\"eslot\":\"0\",\"dlc\":1}",1677190072,9962143,-1,19,-1],[9962104,1,454522,210125,1,0,"{\"epos\":\"10\",\"eslot\":\"10\",\"dlc\":1}",1677190072,9962143,-1,19,-1]]],["3264",[[2068706,74,452979,3264,1,0,"{}",1677175765,2,-1,19,2147483647],[2068728,1,453412,3264,1,0,"{}",1677175765,4,-1,3,2147483647],[2068694,46,451861,3264,1,0,"{}",1677175765,6,-1,19,2147483647],[2068440,75,454503,3264,1,0,"{\"att\":{\"is_new\":{\"val\":\"0\"}},\"epos\":\"20\",\"eslot\":\"20\",\"dlc\":1}",1677175764,2068706,-1,19,-1],[2068704,75,453178,3264,1,0,"{\"epos\":\"0\",\"eslot\":\"0\"}",1677175765,2068706,-1,19,2147483647],[2068705,75,453177,3264,1,0,"{\"epos\":\"1\",\"eslot\":\"1\"}",1677175765,2068706,-1,19,2147483647],[2068707,75,453176, +(I) [13:28:51.780] [000022800]: WorldwideAutomatchService::OnStartComplete - detected successful game start +(I) [13:28:51.780] [000022800]: WorldwideAutomatchService::OnStartComplete - forcing pollcomplete event +(I) [13:28:51.781] [000022800]: GameApp::SetTargetState : new (Game) old (Uninitialized) +(I) [13:28:51.789] [000022800]: MOD - Setting player [0] race to: [198437] +(I) [13:28:51.791] [000022800]: MOD - Setting player [1] race to: [203852] +(I) [13:28:51.793] [000022800]: ModDllSetup: SetStatsGameUID=23469245 +(I) [13:28:51.793] [000022800]: GAME -- Scenario: data:scenarios\multiplayer\cliff_crossing_2p\cliff_crossing_2p +(I) [13:28:51.793] [000022800]: GAME -- Win Condition Qualified Name: 00000000000000000000000000000000:3318379781 +(I) [13:28:51.793] [000022800]: GAME -- Win Condition Name: VictoryPoint +(I) [13:28:51.793] [000022800]: GAME -- Human Player: 0 Raz el Hanout 210125 0 afrika_korps +(I) [13:28:51.793] [000022800]: GAME -- Human Player: 1 Wolfsindis 3264 1 british_africa +(I) [13:28:51.793] [000022800]: GameApp::SetState : new (LoadingGame) old (UnloadedGame) +(I) [13:28:51.970] [000022800]: WorldwideAutomatch2Service::OnPollComplete - I am peer 2, ihost:0, islocal:1 +(I) [13:28:51.970] [000022800]: WorldwideAutomatch2Service::OnPollComplete - All players in session and ready, automatch process complete +(I) [13:28:52.611] [000022800]: GameObj::StartGameObj - info, network session GUID set to [23469245]. +(I) [13:28:52.611] [000003896]: Loading step: [OnBeginLoad] +(I) [13:28:52.612] [000003896]: Loading step: [Assign Players] +(I) [13:28:52.612] [000003896]: Loading step: [FXReflection] +(I) [13:28:52.613] [000003896]: Loading step: [FXDataContext] +(I) [13:28:52.613] [000003896]: Loading step: [FX Texture Pack] +(I) [13:28:52.614] [000003896]: Loading step: [Run Havok Garbage Collection] +(I) [13:28:52.614] [000003896]: Loading step: [Flush Inventory On Application Exit] +(I) [13:28:52.614] [000003896]: Loading step: [Default World] +(I) [13:28:52.628] [000003896]: Loading step: [FX Command Function] +(I) [13:28:52.628] [000003896]: Loading step: [AnimatorCommandFunction] +(I) [13:28:52.628] [000003896]: Loading step: [MemShrink] +(I) [13:28:52.631] [000003896]: Loading step: [Sync Checking] +(I) [13:28:52.631] [000003896]: Loading step: [Tuning Variant] +(I) [13:28:52.631] [000003896]: Using scenario tuning variant [default] +(I) [13:28:52.631] [000003896]: Loading step: [Mod Packs] +(I) [13:28:52.631] [000003896]: Loading step: [SimVis System] +(I) [13:28:52.631] [000003896]: Loading step: [DefaultWorld] +(I) [13:28:52.631] [000003896]: Loading step: [Visual Physics ME] +(I) [13:28:52.631] [000003896]: Loading step: [Deferred Decal Manager] +(I) [13:28:52.631] [000003896]: Loading step: [FogVolumeManager] +(I) [13:28:52.631] [000003896]: Loading step: [Vehicle Physics Function] +(I) [13:28:52.631] [000003896]: Loading step: [Unit Occlusion Function] +(I) [13:28:52.631] [000003896]: Loading step: [Splat Function] +(I) [13:28:52.631] [000003896]: Loading step: [Grass Function] +(I) [13:28:52.631] [000003896]: Loading step: [Object Alpha Factor Function] +(I) [13:28:52.631] [000003896]: Loading step: [Renderable Managers] +(I) [13:28:52.631] [000003896]: Loading step: [Setup Skins] +(I) [13:28:52.632] [000003896]: Loading step: [AnimEventSetup] +(I) [13:28:52.632] [000003896]: Loading step: [Session Precache] +(I) [13:28:52.726] [000003896]: Loading step: [Precache core resources] +(I) [13:28:52.726] [000003896]: Loading step: [Precache EBPs] +(I) [13:28:52.729] [000003896]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [13:28:52.729] [000003896]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [13:28:52.729] [000003896]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [13:28:52.729] [000003896]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [13:28:52.827] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:28:52.827] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:28:52.827] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:28:52.827] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:28:52.827] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:28:52.827] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:28:52.827] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:28:52.827] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:28:52.827] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:28:52.827] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:28:52.827] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:28:52.827] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:28:52.827] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:28:52.827] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:28:52.827] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:28:52.827] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:28:52.827] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:28:52.827] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:28:52.827] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:28:52.827] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:28:52.827] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:28:52.827] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:28:52.827] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:28:52.827] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:28:52.827] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:28:52.827] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:28:52.827] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:28:53.263] [000003896]: Loading step: [Precache State Tree references] +(I) [13:28:53.331] [000003896]: Loading step: [Load Actions] +(I) [13:28:53.333] [000003896]: Loading step: [Load Resources from Precache] +(I) [13:28:55.070] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [3269618840]. +(I) [13:28:56.319] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [3269618840]. +(I) [13:28:57.501] [000003896]: Loading step: [GEWorld] +(I) [13:28:57.501] [000003896]: GAME - InitializeGEWorld +(I) [13:28:57.663] [000003896]: Re-winding a compressed stream for file 'data:scenarios\multiplayer\cliff_crossing_2p\cliff_crossing_2p.scenario'. Expensive operation +(I) [13:28:57.905] [000003896]: Regenerating ImpassMap data... +(I) [13:28:58.025] [000003896]: Regenerating SimTerrainCoverMap data... +(I) [13:28:58.042] [000003896]: SimTerrainCoverMap generation took 0.017783 seconds. +(I) [13:28:58.055] [000003896]: Pathfinding::Regenerate()... +(I) [13:28:58.134] [000003896]: Pathfinding::Regenerate() Done. +(I) [13:28:58.317] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [3269618840]. +(I) [13:28:58.341] [000003896]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:28:58.341] [000003896]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:28:58.341] [000003896]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:28:58.341] [000003896]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:28:58.341] [000003896]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:28:58.341] [000003896]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:28:58.341] [000003896]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:28:58.341] [000003896]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:28:58.341] [000003896]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:28:58.341] [000003896]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:28:58.341] [000003896]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:28:58.341] [000003896]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:28:58.341] [000003896]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:28:58.341] [000003896]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:28:58.341] [000003896]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:28:58.341] [000003896]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:28:58.341] [000003896]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:28:58.341] [000003896]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:28:58.341] [000003896]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:28:58.341] [000003896]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:28:58.341] [000003896]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:28:58.341] [000003896]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:28:58.341] [000003896]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:28:58.341] [000003896]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:28:58.341] [000003896]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:28:58.341] [000003896]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:28:58.341] [000003896]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:28:58.341] [000003896]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:28:58.341] [000003896]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:28:58.341] [000003896]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:28:58.341] [000003896]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:28:58.341] [000003896]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:28:58.370] [000003896]: GAME - CreateGEWorld in 868 ms +(I) [13:28:58.370] [000003896]: SIM -- Setting SyncErrorChecking level to Low +(I) [13:28:58.370] [000003896]: Loading step: [Load Resources from GEWorld] +(I) [13:28:58.385] [000003896]: Loading step: [Sound Banks] +(I) [13:28:58.385] [000003896]: Loading step: [Session] +(I) [13:28:58.385] [000003896]: GAME - SessionSetup +(I) [13:28:58.385] [000003896]: GAME - SessionSetup finished in 0 ms +(I) [13:28:58.385] [000003896]: Loading step: [Player Setup] +(I) [13:28:58.386] [000003896]: GAME -- Recording game +(I) [13:28:58.386] [000003896]: Loading step: [Scenario Lua System] +(I) [13:28:58.406] [000003896]: Loading step: [Team Colour Init] +(I) [13:28:58.406] [000003896]: Loading step: [Race Precaching Event Listener Registration] +(I) [13:28:58.406] [000003896]: Loading step: [Simulation] +(I) [13:28:58.437] [000003896]: LoadWinCondition: - [winconditions\mode_victorypoint] succeeded. +(I) [13:28:58.603] [000003896]: Player [] killed on game tick [0] due to [unused player] +(I) [13:28:58.603] [000003896]: Player [] killed on game tick [0] due to [unused player] +(I) [13:28:58.603] [000003896]: Player [] killed on game tick [0] due to [unused player] +(I) [13:28:58.603] [000003896]: Player [] killed on game tick [0] due to [unused player] +(I) [13:28:58.603] [000003896]: Player [] killed on game tick [0] due to [unused player] +(I) [13:28:58.603] [000003896]: Player [] killed on game tick [0] due to [unused player] +(I) [13:28:58.603] [000003896]: Player [] killed on game tick [0] due to [unused player] +(I) [13:28:58.603] [000003896]: Player [] killed on game tick [0] due to [unused player] +(I) [13:28:58.603] [000003896]: Player [] killed on game tick [0] due to [unused player] +(I) [13:28:58.603] [000003896]: Player [] killed on game tick [0] due to [unused player] +(I) [13:28:58.603] [000003896]: Player [] killed on game tick [0] due to [unused player] +(I) [13:28:58.603] [000003896]: Player [] killed on game tick [0] due to [unused player] +(I) [13:28:58.603] [000003896]: Player [] killed on game tick [0] due to [unused player] +(I) [13:28:58.603] [000003896]: Player [] killed on game tick [0] due to [unused player] +(I) [13:28:58.847] [000003896]: Loading step: [GameUICore System] +(I) [13:28:58.859] [000003896]: Loading step: [UI System] +(I) [13:28:58.859] [000003896]: Loading step: [LUA] +(I) [13:28:58.859] [000003896]: Loading step: [Game Event Listener Registration] +(I) [13:28:58.859] [000003896]: Loading step: [CPU AI] +(I) [13:28:58.868] [000003896]: Loading step: [Scar Init] +(I) [13:28:58.868] [000003896]: Loading step: [FX System] +(I) [13:28:58.868] [000003896]: Loading step: [Cheat Menu] +(I) [13:28:58.871] [000003896]: Loading step: [Scar Start] +(I) [13:28:58.872] [000003896]: Loading step: [Load resources] +(I) [13:28:58.874] [000003896]: Loading step: [PreDisplay] +(I) [13:28:58.874] [000003896]: Loading step: [Free Loading Data] +(I) [13:28:58.874] [000003896]: PreloadResources took 0ms. +(I) [13:28:58.875] [000003896]: Loading step: [MemShrink] +(I) [13:28:58.875] [000003896]: Loading step: [Flush Inventory] +(I) [13:28:58.887] [000003896]: Loading step: [Resolve Impasse Blockers] +(I) [13:28:58.887] [000003896]: Loading step: [Convert OOB Static Entities to Visual Only Objects] +(I) [13:28:58.888] [000003896]: Loading step: [DefaultWorld Begin Play] +(I) [13:28:58.968] [000003896]: Loading step: [Preparing game] +(I) [13:28:58.968] [000003896]: Loading step: [Start Renderer] +(I) [13:28:58.968] [000003896]: Loading step: [FrontEnd simulation initialization] +(I) [13:28:58.968] [000003896]: Loading step: [WPFGFrontEnd loading] +(I) [13:28:58.983] [000003896]: Loading step: [OnEndLoad] +(I) [13:28:59.275] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:2]" finished loading with checksum [3269618840]. +(I) [13:28:59.533] [000022800]: PerformanceRecorder::StartRecording for game size 2 +(I) [13:28:59.533] [000022800]: GAME -- Starting mission: data:scenarios\multiplayer\cliff_crossing_2p\cliff_crossing_2p +(I) [13:28:59.533] [000022800]: MEM -- available page 8336 mb, total page 40074 mb +(I) [13:28:59.539] [000022800]: GameApp::SetState : new (Game) old (LoadingGame) +(I) [13:28:59.539] [000022800]: GameApp::SetTargetState : new (Uninitialized) old (Game) +(I) [13:29:01.014] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=55c7c894ebc2486e64cc3bf5097227e94e8257c5f2294e6b0cc4daa7d15d5874 +(I) [13:29:12.010] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=50/28, mdat=99/198, voip=0/0, rchk=0/0, nudg=4/6, Thdr=0/0, Peer=18/34, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=18/17, lb_p=18/5, lb_c=0/0, cast=0/0, cdat=33/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:29:13.000] [000022800]: Local user framerate is [0.000000] +(I) [13:29:13.000] [000022800]: Local user MinDelay=[79ms], MaxDelay=[104ms], AvgDelay=[90ms], minRTT[21ms], maxRTT[249ms], avgRTT[105ms] +(I) [13:29:15.071] [000023200]: Read bytes [0,"MatchReceivedChatMessage",3264,[210125,"hi :) gl & hf","hi :) gl & hf",2,5867311]] +(I) [13:29:15.077] [000022800]: Received chat message { hi :) gl & hf } +(I) [13:29:15.077] [000022800]: Starting FilterChatJob for message { hi :) gl & hf } +(I) [13:29:15.111] [000022800]: Posting chat event from FilterChatJob for message { hi :) gl & hf } +(I) [13:29:19.435] [000022800]: Sent match chat message { dir auch } +(I) [13:29:19.626] [000022800]: Response received after sending match chat message { dir auch } +(I) [13:29:22.014] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1e3d9344f382533cff45294cf3ce6c5b61329526f7b1e4f524cefd4194412205 +(I) [13:29:26.079] [000023200]: Read bytes [0,"MatchReceivedChatMessage",3264,[210125,"danke","danke",2,5867311]] +(I) [13:29:26.081] [000022800]: Received chat message { danke } +(I) [13:29:26.081] [000022800]: Starting FilterChatJob for message { danke } +(I) [13:29:26.125] [000022800]: Posting chat event from FilterChatJob for message { danke } +(I) [13:29:34.006] [000022800]: Local user framerate is [120.543968] +(I) [13:29:34.006] [000022800]: Local user MinDelay=[68ms], MaxDelay=[111ms], AvgDelay=[85ms], minRTT[21ms], maxRTT[249ms], avgRTT[88ms] +(I) [13:29:38.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=66/0, mdat=208/416, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=12/3, lb_c=0/0, cast=0/0, cdat=61/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:29:42.009] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b0d7a62f3ea913b189e0fe42066b4ae2538e6c3bf7f99fa439059450ccedb512 +(I) [13:29:55.001] [000022800]: Local user framerate is [115.632652] +(I) [13:29:55.001] [000022800]: Local user MinDelay=[52ms], MaxDelay=[111ms], AvgDelay=[79ms], minRTT[21ms], maxRTT[249ms], avgRTT[75ms] +(I) [13:30:12.017] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=78bda0b0dd8f7b13bdf35a0690b92aa802fbe5736b21085889dc06fbab963572 +(I) [13:30:13.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=78/0, mdat=280/560, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=18/5, lb_c=0/0, cast=0/0, cdat=75/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:30:16.003] [000022800]: Local user framerate is [117.594109] +(I) [13:30:16.003] [000022800]: Local user MinDelay=[49ms], MaxDelay=[70ms], AvgDelay=[59ms], minRTT[33ms], maxRTT[177ms], avgRTT[57ms] +(I) [13:30:37.003] [000022800]: Local user framerate is [121.187874] +(I) [13:30:37.003] [000022800]: Local user MinDelay=[41ms], MaxDelay=[76ms], AvgDelay=[58ms], minRTT[32ms], maxRTT[181ms], avgRTT[56ms] +(I) [13:30:39.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=66/0, mdat=208/416, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=13/3, lb_c=0/0, cast=0/0, cdat=59/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:30:40.010] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=496749a9fccc9285157504ef0d4ef8d94a74871bb2ee8242f5ff382d419668a0 +(I) [13:30:55.126] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=20269d86985a26897ac7c2e3be26452d21af3eebf7abef7e805c61151797bfdc +(I) [13:30:57.238] [000023200]: Read bytes [0,"MatchReceivedChatMessage",3264,[210125,"misst jemand hat geklingelt :D","misst jemand hat geklingelt :D",2,5867311]] +(I) [13:30:57.240] [000022800]: Received chat message { misst jemand hat geklingelt :D } +(I) [13:30:57.240] [000022800]: Starting FilterChatJob for message { misst jemand hat geklingelt :D } +(I) [13:30:57.275] [000022800]: Posting chat event from FilterChatJob for message { misst jemand hat geklingelt :D } +(I) [13:30:57.761] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:30:57.761] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:30:57.761] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:30:57.761] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:30:57.761] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:30:57.761] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:30:57.761] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:30:57.761] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:30:57.761] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:30:57.761] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:30:57.761] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:30:57.761] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:30:57.761] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:30:57.761] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:30:57.761] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:30:57.761] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:30:57.761] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:30:57.761] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:30:57.761] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:30:57.761] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:30:57.761] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:30:57.761] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:30:57.761] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:30:57.761] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:30:57.761] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:30:57.761] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:30:57.761] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:30:58.000] [000022800]: Local user framerate is [119.026184] +(I) [13:30:58.000] [000022800]: Local user MinDelay=[38ms], MaxDelay=[76ms], AvgDelay=[55ms], minRTT[22ms], maxRTT[189ms], avgRTT[61ms] +(I) [13:30:58.053] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:30:58.053] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:30:58.053] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:30:58.053] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:30:58.053] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:30:58.053] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:31:10.716] [000022800]: Sent match chat message { schnell ;) } +(I) [13:31:10.911] [000022800]: Response received after sending match chat message { schnell ;) } +(I) [13:31:14.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=113/0, mdat=279/558, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=18/5, lb_c=0/0, cast=0/0, cdat=101/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:31:15.012] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=46f06b142d2371f30776a4d08556db1c6635c8849ec20210e7c35c6eaf374418 +(I) [13:31:19.006] [000022800]: Local user framerate is [115.232712] +(I) [13:31:19.006] [000022800]: Local user MinDelay=[37ms], MaxDelay=[63ms], AvgDelay=[50ms], minRTT[38ms], maxRTT[185ms], avgRTT[65ms] +(I) [13:31:21.215] [000023200]: Read bytes [0,"MatchReceivedChatMessage",3264,[210125,"war gerade schon da ;P","war gerade schon da ;P",2,5867311]] +(I) [13:31:21.219] [000022800]: Received chat message { war gerade schon da ;P } +(I) [13:31:21.219] [000022800]: Starting FilterChatJob for message { war gerade schon da ;P } +(I) [13:31:21.249] [000022800]: Posting chat event from FilterChatJob for message { war gerade schon da ;P } +(I) [13:31:28.114] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d2881051fdfeea1ac6cbe071b11b4de383a64105343c5ab2867667e776c3a04f +(I) [13:31:31.244] [000023200]: Read bytes [0,"MatchReceivedChatMessage",3264,[210125,"glaube die runde geht für mich in die hose ^^","glaube die runde geht für mich in die hose ^^",2,5867311]] +(I) [13:31:31.245] [000022800]: Received chat message { glaube die runde geht f�r mich in die hose ^^ } +(I) [13:31:31.245] [000022800]: Starting FilterChatJob for message { glaube die runde geht f�r mich in die hose ^^ } +(I) [13:31:31.280] [000022800]: Posting chat event from FilterChatJob for message { glaube die runde geht f�r mich in die hose ^^ } +(I) [13:31:36.021] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=53b833508b76e7bf5826cf201e0d76acf56b86342fe153776387336092ac70cf +(I) [13:31:40.006] [000022800]: Local user framerate is [115.715279] +(I) [13:31:40.006] [000022800]: Local user MinDelay=[33ms], MaxDelay=[63ms], AvgDelay=[49ms], minRTT[24ms], maxRTT[185ms], avgRTT[67ms] +(I) [13:31:40.008] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=111/0, mdat=208/416, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=12/3, lb_c=0/0, cast=0/0, cdat=102/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:31:40.729] [000022800]: Sent match chat message { mal schauen^^ } +(I) [13:31:40.919] [000022800]: Response received after sending match chat message { mal schauen^^ } +(I) [13:31:56.012] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=684ab571ef7875d532c9d21383c0ee5094c0dcd872d4332cf4aa245208d0bd79 +(I) [13:32:01.005] [000022800]: Local user framerate is [116.844147] +(I) [13:32:01.005] [000022800]: Local user MinDelay=[38ms], MaxDelay=[59ms], AvgDelay=[49ms], minRTT[56ms], maxRTT[68ms], avgRTT[63ms] +(I) [13:32:11.691] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=43c432471396e3569d6a49bfd837af8935865f2eb3e2b01f4930155f35a89d11 +(I) [13:32:15.002] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=145/0, mdat=280/560, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=18/5, lb_c=0/0, cast=0/0, cdat=135/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:32:18.732] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d60468eafd5a2fcbd36bda14f7c9880fd9effa1e19b5e4f58e54ba2912493ea1 +(I) [13:32:22.006] [000022800]: Local user framerate is [113.338661] +(I) [13:32:22.006] [000022800]: Local user MinDelay=[37ms], MaxDelay=[61ms], AvgDelay=[49ms], minRTT[22ms], maxRTT[136ms], avgRTT[67ms] +(I) [13:32:24.723] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d1bbd896f9125416e441b2c3e46cd96f2be902b97d4944cee84ad4acb0969405 +(I) [13:32:33.470] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=93715bd43406a82ae7f421f4ce9de7baa7aeb45043192a5fd8ae62f69685dac8 +(I) [13:32:36.927] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=45f2fc10a4b6b66b6d3cf1016f7da3779d5e7a5a55506ffa972a9111336320b7 +(I) [13:32:41.005] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=138/0, mdat=208/416, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=14/4, lb_c=0/0, cast=0/0, cdat=125/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:32:43.015] [000022800]: Local user framerate is [107.178558] +(I) [13:32:43.015] [000022800]: Local user MinDelay=[37ms], MaxDelay=[85ms], AvgDelay=[51ms], minRTT[22ms], maxRTT[144ms], avgRTT[64ms] +(I) [13:32:44.050] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b5993dcb5976b44b8d4a15e9b61abe288010dc8581c4acda9f34cee397ad8b90 +(I) [13:32:57.143] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a9f94e42e0972c72a458177061b7f035faf578e80ebfeeaeb72ef60fa1456485 +(I) [13:33:02.586] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=257452765d929dbea214520c515cf838c106aec0f8fc4550e21bcc5c5e15686d +(I) [13:33:04.007] [000022800]: Local user framerate is [105.302612] +(I) [13:33:04.007] [000022800]: Local user MinDelay=[44ms], MaxDelay=[67ms], AvgDelay=[54ms], minRTT[29ms], maxRTT[145ms], avgRTT[71ms] +(I) [13:33:16.001] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=159/0, mdat=280/560, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=16/4, lb_c=0/0, cast=0/0, cdat=149/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:33:19.228] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6d79c26558b0ea35bc259655d4fad6df4d6cf0ee1ff9bbc9634a1a800cfe2aec +(I) [13:33:25.003] [000022800]: Local user framerate is [108.028389] +(I) [13:33:25.003] [000022800]: Local user MinDelay=[41ms], MaxDelay=[67ms], AvgDelay=[54ms], minRTT[29ms], maxRTT[147ms], avgRTT[63ms] +(I) [13:33:32.937] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=096587a3f3ad303a6697116aa6441521530c02c84dba424a11225ba64047abb1 +(I) [13:33:42.004] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=99/0, mdat=208/416, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=14/4, lb_c=0/0, cast=0/0, cdat=90/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:33:44.805] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=41631a42b70fb6438a3e08c961f40fc7ccb68f249909e00ed33d0cd184846113 +(I) [13:33:45.622] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d74326a1897939ca38c2695f4b231cc4a5299889ac9144896f16189d5c07fee4 +(I) [13:33:46.001] [000022800]: Local user framerate is [108.189178] +(I) [13:33:46.001] [000022800]: Local user MinDelay=[41ms], MaxDelay=[67ms], AvgDelay=[53ms], minRTT[24ms], maxRTT[175ms], avgRTT[63ms] +(I) [13:33:51.115] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=28fd00115079ae6c725d3361813f0fd72ba2eb2fee3b536ff316fd58b5410689 +(I) [13:34:02.641] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=49cea91e056d6f03f64e77d86ec49e8a9f0ad9c49f18ea43a32393300a5b4415 +(I) [13:34:07.000] [000022800]: Local user framerate is [101.769470] +(I) [13:34:07.000] [000022800]: Local user MinDelay=[43ms], MaxDelay=[67ms], AvgDelay=[54ms], minRTT[44ms], maxRTT[181ms], avgRTT[64ms] +(I) [13:34:10.474] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e3c3186b5cf01f1053d12a43f16402da175492fea92a2be7e99905f542b54ae6 +(I) [13:34:16.903] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=08b0d4d1ee6403bc833ddd3faed226860d5e062a111ab70cd065ec390c6b05f9 +(I) [13:34:17.006] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=143/0, mdat=280/560, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=17/4, lb_c=0/0, cast=0/0, cdat=128/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:34:22.967] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4ef6d27fdec21b852873a3218410059f8301920c3a633bd39d13f6ef2464eb78 +(I) [13:34:28.003] [000022800]: Local user framerate is [108.900993] +(I) [13:34:28.003] [000022800]: Local user MinDelay=[41ms], MaxDelay=[68ms], AvgDelay=[53ms], minRTT[34ms], maxRTT[181ms], avgRTT[65ms] +(I) [13:34:39.491] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1d6deaf7c25e18c59b8a65726a3008f3007aa84db5e06f255979752f4676d372 +(I) [13:34:43.001] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=104/0, mdat=208/416, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=13/4, lb_c=0/0, cast=0/0, cdat=96/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:34:45.208] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=919dd42aa3593bfd7d4b8e97bf21c7979acb0a9841c6fd5e43c1f03500fb3789 +(I) [13:34:46.297] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5e192bec4da36b59f65de8037084c26f70876fd13771020985d7ee346e6b24a4 +(I) [13:34:48.912] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1fd3277357bf29ec81bdef2727dab16584a4a6c39489480381b2575f45b11bbc +(I) [13:34:49.008] [000022800]: Local user framerate is [107.762276] +(I) [13:34:49.008] [000022800]: Local user MinDelay=[41ms], MaxDelay=[68ms], AvgDelay=[53ms], minRTT[27ms], maxRTT[181ms], avgRTT[63ms] +(I) [13:34:49.892] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2022d3f02740e36e9a3e80d56b72315ed09bc84b6e5018645026340fede5e492 +(I) [13:35:00.605] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8066306047fac85bb4b31d344ab5dea23e479b4396469176512998b22ff5dbce +(I) [13:35:07.310] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f12a1fbfe140b1f67d6cdf59a6ad51d7a0df167792df7fd238c4161211458326 +(I) [13:35:10.006] [000022800]: Local user framerate is [107.449997] +(I) [13:35:10.006] [000022800]: Local user MinDelay=[43ms], MaxDelay=[65ms], AvgDelay=[54ms], minRTT[43ms], maxRTT[187ms], avgRTT[67ms] +(I) [13:35:12.259] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4928437acb2b7e0e92c2682269e3895bb80988c0efe33082fdff07f8dfee6ae6 +(I) [13:35:12.933] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ccb5d8cea8dca62d7649d6400da81605e97875d92f528bcdccffc074e1c35705 +(I) [13:35:14.068] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6eba74cdfb7d404e03347bc67ea7f083f0cf89a3ec45e8a53a1ee23d2765bdfd +(I) [13:35:18.002] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=183/0, mdat=279/558, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=17/4, lb_c=0/0, cast=0/0, cdat=161/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:35:24.063] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=03910f1b8ab3deed4c77700fd778f215127ccc287198d1f710b697750275e8b4 +(I) [13:35:27.499] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e50dc19a50c9391d6f53d05754b6e123b67a772a6e732f686493d481ba076b11 +(I) [13:35:30.800] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d80163f982531dfb66ffb095f0f09954e89d0898053b721d8ff8a7ca3ab74d1a +(I) [13:35:31.001] [000022800]: Local user framerate is [105.373650] +(I) [13:35:31.001] [000022800]: Local user MinDelay=[42ms], MaxDelay=[66ms], AvgDelay=[53ms], minRTT[24ms], maxRTT[187ms], avgRTT[67ms] +(I) [13:35:33.975] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0833061efbc7f35946484d97817b457d100e9936f3c0e4eef6995c3ec7820384 +(I) [13:35:37.562] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=98a2a6edd4648c1b82262d7e51ce0cfdedf4d9096492ecb58c0dbdc1b7a20896 +(I) [13:35:42.953] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=73857b6edd2440b4a30cb6a0ceb7910dd8a741abf3e08fe55286842b74a2cdae +(I) [13:35:44.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=126/0, mdat=208/416, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=14/4, lb_c=0/0, cast=0/0, cdat=110/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:35:45.205] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1e871dcc8466ba2d1167ea1a9ebd98e5200cc1b0e49743b956d2cda5c2ba2a78 +(I) [13:35:52.009] [000022800]: Local user framerate is [102.824287] +(I) [13:35:52.009] [000022800]: Local user MinDelay=[33ms], MaxDelay=[69ms], AvgDelay=[54ms], minRTT[24ms], maxRTT[187ms], avgRTT[64ms] +(I) [13:36:05.017] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=00fad8b2f53c2e39029a3d2c0736e6246c9f7f4abc76f2805680c2bc109dde3f +(I) [13:36:13.004] [000022800]: Local user framerate is [106.562691] +(I) [13:36:13.004] [000022800]: Local user MinDelay=[45ms], MaxDelay=[70ms], AvgDelay=[58ms], minRTT[28ms], maxRTT[146ms], avgRTT[55ms] +(I) [13:36:19.011] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=157/0, mdat=280/560, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=16/4, lb_c=0/0, cast=0/0, cdat=146/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:36:19.801] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3a9d2f73c25aef8791656278ee85e85afeaaaed7bee960a95cd4b729060f67d6 +(I) [13:36:30.212] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2b11228ce7dc95aeddf7d66760504f5d8b20e432bf25013c4db10d93ba253fd7 +(I) [13:36:31.736] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b5f25f701173bc1c9e061794958e091c4ec0702dc4daa824aa1d8dd395c4c601 +(I) [13:36:34.017] [000022800]: Local user framerate is [108.883667] +(I) [13:36:34.017] [000022800]: Local user MinDelay=[44ms], MaxDelay=[72ms], AvgDelay=[57ms], minRTT[21ms], maxRTT[146ms], avgRTT[56ms] +(I) [13:36:43.514] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e3e1bdc13c182e10e2fcdbd8aa6fc75d9e9c8ea007c55bbe27963190433eb2c7 +(I) [13:36:45.003] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=114/0, mdat=208/416, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=14/4, lb_c=0/0, cast=0/0, cdat=102/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:36:54.487] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8e76ee4854897ea524ecd51d2793b3286d45079dccc79cb0bbef6d069051bc9f +(I) [13:36:55.019] [000022800]: Local user framerate is [107.362411] +(I) [13:36:55.019] [000022800]: Local user MinDelay=[40ms], MaxDelay=[92ms], AvgDelay=[56ms], minRTT[21ms], maxRTT[149ms], avgRTT[57ms] +(I) [13:36:58.073] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f56934b79bdcd689c0736820affec4133fbff890d2645dc67c6605b821586ee7 +(I) [13:37:01.628] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=69316e7063b233b812cf16b352c26cdc61aa6f3eb173f5e00e4abcbec36cf8a2 +(I) [13:37:04.516] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b6020b62418a80b7750343e09dbf67d5f8c5887150bf5abd1c7c4f0503c63960 +(I) [13:37:08.684] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=de2b9fdfc1fb2e429d2bd63a6da481206aaef82fb89d324c96d0e82aae200005 +(I) [13:37:10.476] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a9a9e2499ef05ccb5109f2a007cda724298d1f8b46b3f1ea0f790a76714dcaad +(I) [13:37:16.004] [000022800]: Local user framerate is [107.663864] +(I) [13:37:16.004] [000022800]: Local user MinDelay=[41ms], MaxDelay=[69ms], AvgDelay=[56ms], minRTT[31ms], maxRTT[162ms], avgRTT[64ms] +(I) [13:37:16.568] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=761e685070090ec146a74f3f1326267e9376edab35cc7977969aa347e67baac5 +(I) [13:37:18.657] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e50e1f5039c51225d2db11329d4f7adf9d92ef05e52a49f8c035ba1af66704bf +(I) [13:37:20.004] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=133/0, mdat=280/560, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=17/4, lb_c=0/0, cast=0/0, cdat=119/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:37:23.783] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=df3f8393ee57d61a8ac2aa1a45da067a55ddabae1df2cd985c73b684cc0bde5d +(I) [13:37:30.625] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=db55f8f200a736d22617a826cddd71c23d5df8902180cf6c097954e62a79c46a +(I) [13:37:34.944] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0e707350ec46557e7f0055a4ecb0432fb2761ca3dfe919d74eb52088e60cf0d4 +(I) [13:37:37.009] [000022800]: Local user framerate is [94.912025] +(I) [13:37:37.009] [000022800]: Local user MinDelay=[41ms], MaxDelay=[73ms], AvgDelay=[58ms], minRTT[27ms], maxRTT[162ms], avgRTT[62ms] +(I) [13:37:46.003] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=94/0, mdat=208/416, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=13/4, lb_c=0/0, cast=0/0, cdat=84/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:37:50.377] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9b82614e8ceddda94458f2bab7296661f8e48f6a906af475f21aa48a4f0b6537 +(I) [13:37:51.217] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2950ccd7c3c468fd4ea5b16032dbac2292d5e02ada804601e7ece27ffdb9784b +(I) [13:37:54.048] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3f3aad3243e4c1b486417984b3a2010c467bdc21e67155913dabfbd4745ab834 +(I) [13:37:54.901] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=bc1f679765f59d0aaf945b42c871901af75057142ae9891660efeec707a253b9 +(I) [13:37:56.661] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=efdec64da12f744d66d9d35d5608e349fb8958615f17a4648b1cc18d4af6a673 +(I) [13:37:58.009] [000022800]: Local user framerate is [87.449997] +(I) [13:37:58.009] [000022800]: Local user MinDelay=[41ms], MaxDelay=[74ms], AvgDelay=[58ms], minRTT[22ms], maxRTT[177ms], avgRTT[65ms] +(I) [13:37:58.186] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3f86ead7b1bd2236df6671ccb2e537b242a52d3a942e8a799c52fd062ef5c6ee +(I) [13:38:03.205] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=bdb162d0d652f877b156f980487ac7379ef4cf11da61d1b42ec460f00ddc0991 +(I) [13:38:14.211] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a72a574bd8437c7c69029b9a233785a4d9cb171696be48220da86a24fd34dc68 +(I) [13:38:19.007] [000022800]: Local user framerate is [93.376648] +(I) [13:38:19.007] [000022800]: Local user MinDelay=[50ms], MaxDelay=[72ms], AvgDelay=[60ms], minRTT[23ms], maxRTT[171ms], avgRTT[61ms] +(I) [13:38:21.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=127/0, mdat=280/560, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=17/4, lb_c=0/0, cast=0/0, cdat=119/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:38:24.842] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=faccb3faec6498269549f763c992f2a8db24ab40dbe5956aff998531a0d375d6 +(I) [13:38:29.724] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d9547605787b32997d4bb079e3d9f31b3443ddbe3ebc3f2977f9f9668a1ae8d0 +(I) [13:38:38.840] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2424a04d88fa13bfc15e29d673681e0599caa9b42e47f371bb93a9d4b7f88aa6 +(I) [13:38:40.005] [000022800]: Local user framerate is [103.958412] +(I) [13:38:40.005] [000022800]: Local user MinDelay=[45ms], MaxDelay=[100ms], AvgDelay=[59ms], minRTT[23ms], maxRTT[181ms], avgRTT[63ms] +(I) [13:38:47.008] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=113/0, mdat=208/416, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=14/4, lb_c=0/0, cast=0/0, cdat=104/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:38:57.844] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=920073f264ed0259563a758f0993e2fff07ef7122f5f07e779ae20e99eafb7ab +(I) [13:39:01.000] [000022800]: Local user framerate is [101.214569] +(I) [13:39:01.000] [000022800]: Local user MinDelay=[48ms], MaxDelay=[65ms], AvgDelay=[57ms], minRTT[44ms], maxRTT[113ms], avgRTT[60ms] +(I) [13:39:02.756] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=46b708b1d7d7d9c4ca3f1a4240354429a688f542430a8767860106aa9e346a4f +(I) [13:39:05.514] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3e3f7b68285093bb6f7be8174d8fa3b0e127764cef874a683a8c17349c22e075 +(I) [13:39:12.270] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ddbc8cff9f93f571c7d49db95710e235a2c8cfbcbc17822baf203e99927572c2 +(I) [13:39:16.482] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=19cbc42a8c8dccb9d296dc3ca1a481cbac42873755f594b72236b291d02d4d94 +(I) [13:39:18.172] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a9fba2b03202da4cd3487b6e4a8a1dd2c3977d3e99057a3fc9be2d1bba5a7bfe +(I) [13:39:22.002] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=170/0, mdat=279/558, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=16/4, lb_c=0/0, cast=0/0, cdat=149/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:39:22.010] [000022800]: Local user framerate is [97.120865] +(I) [13:39:22.010] [000022800]: Local user MinDelay=[34ms], MaxDelay=[79ms], AvgDelay=[58ms], minRTT[24ms], maxRTT[183ms], avgRTT[62ms] +(I) [13:39:22.916] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a3d97c54de74958146ade8b952e242423ee6e5f643581c55762c6402a9531ad7 +(I) [13:39:30.671] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f240e823e1c169dd8ebd8d8b88080085bf4bfd245e61af4156321b6f70a3b89a +(I) [13:39:34.112] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=25ab954c6e8268774156a3dc5e5dab5a9fce980ab1352173a3bb49d09cae951c +(I) [13:39:38.022] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6956d1a8e74673abd457954c563384f4789f02f559e95f59b8649a783c974d8a +(I) [13:39:43.005] [000022800]: Local user framerate is [95.230949] +(I) [13:39:43.005] [000022800]: Local user MinDelay=[34ms], MaxDelay=[79ms], AvgDelay=[59ms], minRTT[22ms], maxRTT[183ms], avgRTT[62ms] +(I) [13:39:44.481] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=792f3b8144a7a8aa14f0ac7615545c4095074b80701958679b2bc1ef94c085c0 +(I) [13:39:48.008] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=115/0, mdat=208/416, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=14/4, lb_c=0/0, cast=0/0, cdat=103/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:39:49.173] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8f5636ef110b9749ebd09d2c606eeb8734667bcae0a222122402c4b62063de5a +(I) [13:39:55.184] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=236f70d5b16a83137544c9b5331ffe92d8f1300646c798554056d3a9a0c76900 +(I) [13:40:04.004] [000022800]: Local user framerate is [89.682053] +(I) [13:40:04.004] [000022800]: Local user MinDelay=[54ms], MaxDelay=[75ms], AvgDelay=[63ms], minRTT[34ms], maxRTT[94ms], avgRTT[47ms] +(I) [13:40:06.153] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=07191750cc90f1c37a7ccaa93e81424fea091b40cd611cfff6245ca9c501723d +(I) [13:40:23.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=148/0, mdat=280/560, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=18/5, lb_c=0/0, cast=0/0, cdat=131/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:40:25.001] [000022800]: Local user framerate is [93.385994] +(I) [13:40:25.001] [000022800]: Local user MinDelay=[47ms], MaxDelay=[77ms], AvgDelay=[62ms], minRTT[22ms], maxRTT[150ms], avgRTT[49ms] +(I) [13:40:26.015] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2c2a36aa99c772db28ae036645c2c3fdf75a7c611da6dc6191dcf4295d8e58a0 +(I) [13:40:43.414] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=588440448374ed196a2a0df00e03102b02456c0b0faf5d36e691fd3069150416 +(I) [13:40:46.020] [000022800]: Local user framerate is [103.113899] +(I) [13:40:46.020] [000022800]: Local user MinDelay=[43ms], MaxDelay=[88ms], AvgDelay=[59ms], minRTT[22ms], maxRTT[150ms], avgRTT[52ms] +(I) [13:40:46.534] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=423e76582a8164cd3b78b0f56129faa80746ed9fcabb00186c73cde9399f590d +(I) [13:40:49.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=105/0, mdat=208/416, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=12/3, lb_c=0/0, cast=0/0, cdat=92/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:40:59.286] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8526506ab0e05f7b709c57cd1e14c377004712571f99aa5232d1b9de3cdb4740 +(I) [13:41:02.435] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6f0699912951f389d3f165310e97e5d9befd1286becb911aa1544d082a43bb62 +(I) [13:41:03.158] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=028b1e6e68c33ca77210f78a3a2d0fc41b7fbe2ea58b57eda483bdaf9b8b7596 +(I) [13:41:03.677] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a5050fdb97326b1372d0ee64d72c1a3d1525ae81b1b4da9068a6883071a7b073 +(I) [13:41:07.022] [000022800]: Local user framerate is [99.745003] +(I) [13:41:07.022] [000022800]: Local user MinDelay=[46ms], MaxDelay=[69ms], AvgDelay=[57ms], minRTT[30ms], maxRTT[144ms], avgRTT[62ms] +(I) [13:41:22.797] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fb90d1ae3a2c5e8771c19b986643629fa9571790d00b61f2bb7158b32c1cc6aa +(I) [13:41:24.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=123/0, mdat=280/560, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=18/5, lb_c=0/0, cast=0/0, cdat=110/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:41:25.865] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f37a7b8d815f14c31a0f5c09e36b408960f0aa2c7558e0b536f5edd8ff5a9406 +(I) [13:41:28.000] [000022800]: Local user framerate is [102.664055] +(I) [13:41:28.000] [000022800]: Local user MinDelay=[36ms], MaxDelay=[78ms], AvgDelay=[57ms], minRTT[30ms], maxRTT[144ms], avgRTT[58ms] +(I) [13:41:33.489] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0dd2b9115d12d0a69d39f52148639e689488b265e970b7c6361b7c7608da47c8 +(I) [13:41:45.324] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9bc6946f6def35d48f8236db8ae2d51b249bdf843c8a4871830163c88e5a735b +(I) [13:41:48.356] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d08d472aa092b4d9fb34f5b014b06bab58fc4600edd7056ad822430263ef8bfa +(I) [13:41:49.001] [000022800]: Local user framerate is [97.311066] +(I) [13:41:49.001] [000022800]: Local user MinDelay=[36ms], MaxDelay=[78ms], AvgDelay=[57ms], minRTT[24ms], maxRTT[151ms], avgRTT[60ms] +(I) [13:41:50.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=132/0, mdat=208/416, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=13/3, lb_c=0/0, cast=0/0, cdat=111/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:41:52.552] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=67133d541d31874840759a9c6dc65918ca1cdc4f460cfb5bcb120846062c8e5d +(I) [13:42:05.115] [000022800]: Sent match chat message { gg^^ } +(I) [13:42:05.604] [000022800]: Response received after sending match chat message { gg^^ } +(I) [13:42:10.001] [000022800]: Local user framerate is [93.181358] +(I) [13:42:10.001] [000022800]: Local user MinDelay=[49ms], MaxDelay=[70ms], AvgDelay=[59ms], minRTT[33ms], maxRTT[171ms], avgRTT[60ms] +(I) [13:42:10.900] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cc7c18831a221e49e6a4ba5bcb820debc1055779f295e69423745499335318fb +(I) [13:42:13.840] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7842190cceaa3c5617c66531c6b34c844665727d6c14637ed42a56494a0fcc42 +(I) [13:42:17.845] [000023200]: Read bytes [0,"MatchReceivedChatMessage",3264,[210125,"ich glaub leider auch :P","ich glaub leider auch :P",2,5867311]] +(I) [13:42:17.853] [000022800]: Received chat message { ich glaub leider auch :P } +(I) [13:42:17.853] [000022800]: Starting FilterChatJob for message { ich glaub leider auch :P } +(I) [13:42:17.894] [000022800]: Posting chat event from FilterChatJob for message { ich glaub leider auch :P } +(I) [13:42:18.070] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:18.070] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:18.070] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:18.070] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:18.070] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:18.070] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:18.070] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:18.070] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:18.070] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:18.070] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:18.070] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:18.070] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:18.070] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:18.070] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:18.070] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:18.070] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:18.070] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:18.070] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:18.070] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:18.070] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:18.070] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:18.070] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:18.070] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:18.070] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:18.070] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:18.070] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:18.070] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:18.443] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:18.443] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:18.443] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:18.443] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:18.443] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:18.443] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:18.443] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:25.002] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=121/0, mdat=280/560, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=17/5, lb_c=0/0, cast=0/0, cdat=116/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:42:25.056] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=dee573dc7a6a7c73fd7f46b8c2c4833e46574bc8138424a633be473fc8d1e0f0 +(I) [13:42:31.000] [000022800]: Local user framerate is [91.363449] +(I) [13:42:31.000] [000022800]: Local user MinDelay=[2ms], MaxDelay=[92ms], AvgDelay=[62ms], minRTT[23ms], maxRTT[178ms], avgRTT[61ms] +(I) [13:42:33.202] [000022800]: MOD -- Game Over at frame 6504 +(I) [13:42:33.304] [000022800]: Report sent for profileID[210125] -> race=[198437], result=[0], XP Gain=[3375] +(I) [13:42:33.304] [000022800]: Report sent for profileID[3264] -> race=[203852], result=[1], XP Gain=[7329] +(I) [13:42:33.321] [000022800]: Party::SetStatus - S_CONFIGURING +(I) [13:42:33.336] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3433f58ebc933aea3f5473ec814015115b537a151cfe718ac607170590fc83a5 +(I) [13:42:33.336] [000022800]: Sending matchinfo change #17 +(E) [13:42:33.387] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:42:34.214] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=993bab6bc810847fe7f5e79b76bda0c8c19725b5a42b99d062e0619c1a51b8a1 +(I) [13:42:34.756] [000022800]: MPMatchSetup::OnMatchEvent - MET_ReportResults - result [0] +(I) [13:42:34.756] [000022800]: GameObjController - OnMatchEvent: event type 9 +(I) [13:42:34.962] [000023200]: Read bytes [0,"AvatarStatsUpdatedMessage",3264,[[[4,3264,65,"",1680522154]]]] +(I) [13:42:34.962] [000023200]: Read bytes [0,"AvatarStatsUpdatedMessage",3264,[[[5,3264,40,"",1680522154]]]] +(I) [13:42:34.962] [000023200]: Read bytes [0,"AvatarStatsUpdatedMessage",3264,[[[6,3264,84024,"",1680522154]]]] +(I) [13:42:34.962] [000023200]: Read bytes [0,"AvatarStatsUpdatedMessage",3264,[[[14,3264,15050,"",1680522154]]]] +(I) [13:42:34.962] [000023200]: Read bytes [0,"AvatarUpdateMessage",3264,[[2708,3264,"/steam/76561198023526153","","Wolfsindis","",15990,2221,2221,2074389,null,"76561198023526153",3,[]]]] +(I) [13:42:34.962] [000023200]: Read bytes [0,"AvatarUpdateMessage",3264,[[2018,210125,"/steam/76561198007688779","","Raz el Hanout","",77758,1291,1291,2074389,null,"76561198007688779",3,[]]]] +(I) [13:42:34.962] [000023200]: Read bytes [0,"GameResultNotificationMessage",3264,[[[3264,20,203852,1,[1],15990,[["unitprod",23],["vvetrank",9],["cabil",1],["dmgdone",4442],["plost",13],["svetrank",1],["reqmax",0],["cpearn",3],["reqspnt",0],["powearn",0],["blost",0],["elitekill",2],["edeaths",28],["structdmg",1],["pcap",28],["inactperiod",26],["lowintperiod",0],["precap",11],["sqkill",3],["popmax",0],["powspnt",0],["sqprod",8],["bprod",8],["svetxp",1200],["vabnd",0],["addonkill",48],["totalcmds",1019],["gammaspnt",0],["vkill",2],["objdmh",0],["abil",36],["sqlost",0],["vcap",0],["vlost",0],["gt",813],["upg",52],["vvetxp",11100],["reqearn",0],["vp1",0],["vp0",0],["erein",25],["cflags",0],["wpnpu",0],["ekills",50],["powmax",0],["vprod",3]],0,10,[],null,[],[],[],[],[],[]],[210125,20,198437,0,[1],77758,[["unitprod",26],["vvetrank",4],["cabil",4],["dmgdone",3008],["plost",11],["svetrank",0],["reqmax",0],["cpearn",3],["reqspnt",0],["powearn",0],["blost",0],["elitekill",0],["edeaths",50],["structdmg",0],["pcap",15],["inactperiod",97],["lowintperiod",0],["precap",13],["sqkill",0],["popmax",0],["powspnt",0],["sqprod",8],["bprod",6],["svetxp",0],["vabnd",0],["addonkill",27],["totalcmds",376],["gammaspnt",0],["vkill",0],["objdmh",0],["abil",11],["sqlost",3],["vcap",0],["vlost",2],["gt",813],["upg",12],["vvetxp",4500],["reqearn",0],["vp1",0],["vp0",0],["erein",35],["cflags",0],["wpnpu",0],["ekills",27],["powmax",0],["vprod",3]],0,10,[],null,[],[],[],[],[],[]]],[[15990,2130257,9,5,1,0,0,646,2260,288,1075,7,1146,1680522154],[77758,2130259,17,13,-1,0,0,1255,2434,563,1143,5,1023,1680522154]],[[4,3264,65,"",1680521225],[5,3264,40,"",1680449654],[6,3264,84024,"",1680521225],[14,3264,15050,"",1680521225],[10,210125,49,"",1680521146],[12,210125,61198,"",1680521146],[16,210125,30229,"",1680521146]],5867311,"",[]]] +(I) [13:42:34.968] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:34.968] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:34.968] [000022800]: RNT_StatsUpdate: Win notification, profileID 3264, race =203852, level=7, ranking=646 +(I) [13:42:34.968] [000022800]: RNT_StatsUpdate: Loss notification, profileID 210125, race =198437, level=5, ranking=1255 +(I) [13:42:36.363] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=17839bdc455780dc69ff4e7922995f9c5b69ee313392334a55fad0796b4aa03e +(I) [13:42:36.688] [000022800]: GameApp::SetTargetState : new (UnloadedGame) old (Uninitialized) +(I) [13:42:36.699] [000022800]: GameApp::SetState : new (UnloadingGame) old (Game) +(I) [13:42:37.697] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:37.713] [000022800]: GameObj::ShutdownGameObj +(I) [13:42:37.713] [000022800]: GetMaxFrameTimeFromProfile: players=2 expected FPS=100.000000, bars=0, max avg=0.000, sd=0.000, 0 samples = +(I) [13:42:37.713] [000022800]: PerformanceRecorder::EndRecording - game size=2, max average=0.011435, worst frame=0.010000 +(I) [13:42:37.713] [000022800]: Recording: No [2 players] + +(I) [13:42:37.713] [000022800]: Max/Avg: 0.01, 0.01 sec (fps=87.45, 107.01) (40 samples) + +(I) [13:42:37.713] [000022800]: Bars: 0 + +(I) [13:42:37.713] [000022800]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_seconds_played] +(I) [13:42:37.713] [000022800]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_units_produced] +(I) [13:42:37.713] [000022800]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_units_killed] +(I) [13:42:37.713] [000022800]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_units_lost] +(I) [13:42:37.719] [000022800]: StatArtWarningsCount 0 +(I) [13:42:37.719] [000022800]: StatDataWarningsCount 0 +(I) [13:42:38.154] [000022800]: GameApp::SetState : new (UnloadedGame) old (UnloadingGame) +(I) [13:42:38.154] [000022800]: GameApp::SetTargetState : new (Uninitialized) old (UnloadedGame) +(I) [13:42:38.164] [000022800]: SessionID : 59872f - Disconnect called with reasonID 1000 - MatchSetup::Disconnect +(I) [13:42:38.165] [000022800]: MatchSetupManager: Removed queued match [cliff_crossing_2p] Queue is now [0] +(I) [13:42:38.165] [000022800]: SessionID : 59872f - Disconnect called with reasonID 1000 - MatchSetup::Disconnect +(I) [13:42:38.171] [000022800]: Disconnect process already running +(I) [13:42:38.171] [000022800]: GetPartyStatsByID found 1 teams for user ID 3264 +(I) [13:42:38.174] [000022800]: SessionID : 5986e4 - Disconnect called with reasonID 1000 - Destroying Party +(E) [13:42:38.204] [000022800]: SetVisible called while !IsConnected +(I) [13:42:38.347] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:38.347] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:41.654] [000022800]: WorldwideAdvertisementService::Process - EVENT_HOSTMIGRATION +(I) [13:42:41.654] [000022800]: WorldwidePartyService::OnHostMigration - [5867311] Got a queued migration event while disconnecting, ignoring +(I) [13:42:41.654] [000022800]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [13:42:41.654] [000022800]: WorldwidePartyService::PeerRemove, Removing peer ID: 1 +(I) [13:42:41.654] [000022800]: peerremove - peerIDRemoved=210125, reasonID=119, reason debug hint - Forcing peers to disconnect +(I) [13:42:41.654] [000022800]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [13:42:41.654] [000022800]: WorldwidePartyService::PeerRemove, Removing peer ID: 2 +(I) [13:42:41.654] [000022800]: peerremove - peerIDRemoved=3264, reasonID=1000, reason debug hint - MatchSetup::Disconnect +(E) [13:42:41.657] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.668] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.679] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.690] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.700] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.711] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.722] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.735] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.746] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.757] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.767] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.778] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.789] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.800] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.811] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.821] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.833] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.843] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.855] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.865] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.876] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.887] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.898] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.909] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.920] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [13:42:41.924] [000022800]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [13:42:41.924] [000022800]: WorldwidePartyService::PeerRemove, Removing peer ID: 1 +(I) [13:42:41.924] [000022800]: peerremove - peerIDRemoved=3264, reasonID=1000, reason debug hint - Destroying Party +(E) [13:42:41.931] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.931] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.942] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.942] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.952] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.952] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.963] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.964] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.975] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.976] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.986] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.986] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.997] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:41.998] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.008] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.008] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.019] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.019] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.030] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.030] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.041] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.042] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.052] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.052] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.063] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.063] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.074] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.074] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.085] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.085] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.096] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.097] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.107] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.107] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.118] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.118] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.129] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.129] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [13:42:42.135] [000022800]: PeerRemoveAll - flushing local session peer data +(I) [13:42:42.135] [000022800]: LeaveSessionInternal - no action taken, needLeave=0, service=0 +(I) [13:42:42.135] [000022800]: Destroyed Matchinfo +(E) [13:42:42.135] [000022800]: Socks::Free: Socket 0/12280 did not close properly before being freed. +(I) [13:42:42.136] [000022800]: OnDestroyPartyNotification - partyID = 5867311, prevID = -1 +(I) [13:42:42.136] [000022800]: OnDestroyPartyNotification - partyID = 5867311, prevID = -1 +(E) [13:42:42.140] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.151] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.162] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.173] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.184] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.194] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.205] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.216] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.227] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.238] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.249] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.259] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.270] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.281] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.292] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.303] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.314] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.325] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.336] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.346] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.357] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.368] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.378] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.389] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:42:42.399] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [13:42:42.405] [000022800]: PeerRemoveAll - flushing local session peer data +(I) [13:42:42.405] [000022800]: LeaveSessionInternal - no action taken, needLeave=0, service=0 +(I) [13:42:42.405] [000022800]: Destroyed Matchinfo +(E) [13:42:42.406] [000022800]: Socks::Free: Socket 0/12232 did not close properly before being freed. +(I) [13:42:42.406] [000022800]: OnDestroyPartyNotification - partyID = 5867236, prevID = -1 +(I) [13:42:42.406] [000022800]: OnDestroyPartyNotification - partyID = 5867236, prevID = -1 +(I) [13:42:47.009] [000022800]: starting online hosting +(I) [13:42:47.430] [000022800]: OnlineHostAsync success +(I) [13:42:47.430] [000022800]: Created Matchinfo for sessionID 5868255 +(I) [13:42:47.430] [000022800]: OnJoinAdvertisementSuccess - joined online match, server leave notification required +(I) [13:42:47.430] [000022800]: starting local hosting +(I) [13:42:47.430] [000022800]: ValidateCustomData: called with 5586 bytes of custom data +(I) [13:42:47.430] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:47.431] [000022800]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [13:42:47.431] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:42:47.439] [000022800]: Sending matchinfo change #2 +(I) [13:42:47.439] [000022800]: HostAsync - got operation info 0:SessionOperationInfo::SUCCESS +(I) [13:42:47.447] [000022800]: hosting - Session is connected +(I) [13:42:47.448] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=1/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=1/0, Pdel=0/0, drop=0/0, data=1/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=3/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=3/0, lb_p=0/0, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=1/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(E) [13:42:47.546] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:42:47.687] [000022800]: CreateSteamSessionAsync::Process: Successfully created lobby; lobbyId=109775243305448939 +(I) [13:42:48.375] [000023200]: Read bytes [0,"PlatformSessionUpdateMessage",3264,[5868255,"0",109775243305448939,""]] +(I) [13:42:48.377] [000022800]: Sending matchinfo change #3 +(I) [13:42:48.412] [000022800]: HostAsync - completed with HostResult = 0 +(I) [13:42:48.412] [000022800]: Party::SetHostJoinResult - 0 +(I) [13:42:48.413] [000022800]: Party::SetStatus - S_CONFIGURING +(I) [13:42:48.413] [000022800]: WorldwideAutomatchService::OnHostComplete - automatcher is no longer active - stopPollPending 0 automatchPollID 18446744073709551615 +(E) [13:42:48.430] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:42:48.507] [000022800]: Sending matchinfo change #4 +(E) [13:42:48.543] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:42:50.594] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [13:42:50.600] [000022800]: Sending matchinfo change #6 +(E) [13:42:50.670] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:42:50.797] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [13:42:50.797] [000022800]: Sending matchinfo change #7 +(E) [13:42:50.924] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:42:56.012] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4e9f29009ecfa8eda43daa57ff878767738f2e08442993d1f0d1ee656eb89ff2 +(I) [13:43:01.001] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [13:43:01.281] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [13:43:12.006] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [13:43:12.197] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [13:43:21.010] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4ffa6129422343e317912ac576c786ab904d532f360f11b96600956cfa186eb2 +(I) [13:43:23.006] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [13:43:23.216] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [13:43:34.003] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [13:43:34.207] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [13:43:41.624] [000023200]: Read bytes [0,"Automatch2GameMessage",3264,["226954","5868323","twin_beach_2p_mkii","203852","1","2","2","1","authtoken","3.72.164.219",27003,27113,27213,[[5868323,3264,645,15990,203852,1,"/10.0.70.94"],[5868323,226954,-1,100142,137123,0,"/10.0.70.19"]],""]] +(I) [13:43:41.630] [000022800]: AutomatchInternal - OnJoinAutomatch - Server told us join matchID=5868323, hostProfileID=226954 +(I) [13:43:41.630] [000022800]: AutomatchInternal - join request validated, attempting +(I) [13:43:42.082] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:43:42.112] [000022800]: JoinAsync: Starting AsyncJob... +(I) [13:43:42.398] [000022800]: OnlineJoinAsync success +(I) [13:43:42.398] [000022800]: Created Matchinfo for sessionID 5868323 +(I) [13:43:42.398] [000022800]: OnJoinAdvertisementSuccess - joined online match, server leave notification required +(I) [13:43:42.642] [000022800]: ValidateCustomData: called with 2836 bytes of custom data +(I) [13:43:42.642] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:43:42.642] [000022800]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [13:43:42.642] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:43:42.642] [000022800]: ValidateCustomData: called with 1540 bytes of custom data +(I) [13:43:42.642] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:43:42.642] [000022800]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [13:43:42.642] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:43:42.650] [000022800]: Accepted matchInfo updated 43 from host +(I) [13:43:42.650] [000022800]: JoinAsync - got operation info 0:SessionOperationInfo::SUCCESS +(I) [13:43:42.659] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=1/1, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/4, Pdel=0/0, drop=0/0, data=1/2, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=2/7, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=2/3, lb_p=0/0, lb_c=0/1, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(E) [13:43:42.842] [000022800]: JoinSteamSessionAsync::Process: Steam join lobby completed; failed=0 failureReason=-1 +(E) [13:43:42.842] [000022800]: JoinSteamSessionAsync::OnLobbyEnter: Error joining lobby; lobbyId=0 ioError=1 response=0 +(E) [13:43:42.856] [000022800]: JoinAsync: failed to join platform session. Continuing anyway +(I) [13:43:42.856] [000022800]: JoinAsync - completed with JoinResult = 0 +(I) [13:43:42.856] [000022800]: JoinAsync - completed with JoinResult = 0:AdvertisementJoinEvent::R_Success +(I) [13:43:42.856] [000022800]: Creating an RLink chat channel (not a multiplayer game). +(I) [13:43:42.857] [000022800]: WorldwideAutomatch2Service::OnJoinComplete - Completed Join with joinResult=0 matchID=5868323 +(I) [13:43:42.857] [000022800]: JoinAsync: AsyncJob Complete... +(I) [13:43:42.857] [000022800]: Sending matchinfo change #8 +(E) [13:43:42.953] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:43:43.011] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1b57930ab3d7cf0655c4ba58319b4951f995cb5e82b4a8f1d1de9c673a4f4bf3 +(I) [13:43:43.124] [000022800]: WorldwideAutomatch2Service::Process - Got into game successfully, 2 players present, got correct slot settings - setting metadata +(I) [13:43:43.393] [000022800]: Accepted matchInfo updated 44 from host +(I) [13:43:45.005] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [13:43:45.209] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [13:43:47.005] [000022800]: WorldwideAutomatch2Service::Process - Waiting, only 0 players ready +(I) [13:43:48.001] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=3/4, mdat=0/0, voip=0/0, rchk=0/0, nudg=1/2, Thdr=0/0, Peer=4/6, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=4/3, lb_p=3/1, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:43:51.004] [000022800]: WorldwideAutomatch2Service::Process - Waiting, only 0 players ready +(I) [13:43:53.009] [000022800]: Party::SetStatus - S_PLAYING +(I) [13:43:53.030] [000022800]: Sending matchinfo change #9 +(E) [13:43:53.072] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:43:54.521] [000022800]: Accepted matchInfo updated 45 from host +(I) [13:43:55.002] [000022800]: WorldwideAutomatch2Service::Process - Got into game successfully, 2 players present, got correct slot settings - readying up +(I) [13:43:55.003] [000022800]: WorldwidePartyService::RequestReady: Sending PlayerReadyRequest; profileID=3264 isReady=1 isSuccessful=1 +(I) [13:43:55.271] [000022800]: Accepted matchInfo updated 46 from host +(I) [13:43:56.000] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [13:43:56.199] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [13:43:56.270] [000022800]: Accepted matchInfo updated 47 from host +(I) [13:43:56.270] [000022800]: WorldwideAutomatchService::OnStartComplete - detected successful game start +(I) [13:43:56.270] [000022800]: Match Started - [226954 /steam/76561198019755159], slot = 0, ranking = -1 +(I) [13:43:56.270] [000022800]: Match Started - [3264 /steam/76561198023526153], slot = 1, ranking = 645 +(I) [13:43:56.708] [000023200]: Read bytes [0,"MatchStartMessage",3264,[[[3264,["2068341","2068340"]],[226954,["2068341","2068340"]]],[["3264","203852"],["226954","137123"]],1680522236,[["3264",[[2068706,74,452979,3264,1,0,"{}",1677175765,2,-1,19,2147483647],[2068728,1,453412,3264,1,0,"{}",1677175765,4,-1,3,2147483647],[2068694,46,451861,3264,1,0,"{}",1677175765,6,-1,19,2147483647],[2068440,75,454503,3264,1,0,"{\"att\":{\"is_new\":{\"val\":\"0\"}},\"epos\":\"20\",\"eslot\":\"20\",\"dlc\":1}",1677175764,2068706,-1,19,-1],[2068704,75,453178,3264,1,0,"{\"epos\":\"0\",\"eslot\":\"0\"}",1677175765,2068706,-1,19,2147483647],[2068705,75,453177,3264,1,0,"{\"epos\":\"1\",\"eslot\":\"1\"}",1677175765,2068706,-1,19,2147483647],[2068707,75,453176,3264,1,0,"{\"epos\":\"2\",\"eslot\":\"2\"}",1677175765,2068706,-1,19,2147483647],[2068790,75,454106,3264,1,0,"{\"epos\":\"18\",\"eslot\":\"18\"}",1677175765,2068706,-1,19,2147483647],[2068791,75,454107,3264,1,0,"{\"epos\":\"19\",\"eslot\":\"19\"}",1677175765,2068706,-1,19,2147483647],[2068793,75,454114,3264,1,0,"{\"epos\":\"6\",\"eslot\":\"6\"}",1677175765,2068706,-1,19,2147483647],[2068794,75,454112,3264,1,0,"{\"epos\":\"7\",\"eslot\":\"7\"}",1677175765,2068706,-1,19,2147483647],[2068796,75,454111,3264,1,0,"{\"epos\":\"8\",\"eslot\":\"8\"}",1677175765,2068706,-1,19,2147483647],[2068797,75,454113,3264,1,0,"{\"epos\":\"9\",\"eslot\":\"9\"}",1677175765,2068706,-1,19,2147483647],[2068799,75,454110,3264,1,0,"{\"epos\":\"10\",\"eslot\":\"10\"}",1677175765,2068706,-1,19,2147483647],[2068800,75,454125,3264,1,0,"{\"epos\":\"11\",\"eslot\":\"11\"}",1677175765,2068706,-1,19,2147483647],[2068801,75,454123,3264,1,0,"{\"epos\":\"12\",\"eslot\":\"12\"}",1677175765,2068706,-1,19,2147483647],[2068802,75,454116,3264,1,0,"{\"epos\":\"13\",\"eslot\":\"13\"}",1677175765,2068706,-1,19,2147483647],[2068803,75,454121,3264,1,0,"{\"epos\":\"14\",\"eslot\":\"14\"}",1677175765,2068706,-1,19,2147483647],[43146515,27,454571,3264,1,0,"{\"epos\":\"15\",\"att\":{\"is_new\":{\"val\":\"0\"}},\"eslot\":\"15\"}",1680029819,2068706,-1,51,-1],[43146516,27,454563,3264,1,0,"{\"epos\":\"3\",\"att\":{\"is_new\":{\"val\":\"0\"}},\"eslot\":\"3\"}",1680029819,2068706,-1,51,-1],[43146517,27,454567,3264,1,0,"{\"epos\":\"17\",\"att\":{\"is_new\":{\"val\":\"0\"}},\"eslot\":\"17\"}",1680029819,2068706,-1,51,-1],[43148195,28,454677,3264,1,0,"{\"epos\":\"4\",\"att\":{\"is_new\":{\"val\":\"0\"}},\"eslot\":\"4\"}",1680030159,2068706,-1,19,-1],[43148994,27,454569,3264,1,0,"{\"epos\":\"16\",\"att\":{\"is_new\":{\"val\":\"0\"}},\"eslot\":\"16\"}",1680030297,2068706,-1,51,-1],[43148995,27,454561,3264,1,0,"{\"epos\":\"5\",\"att\":{\"is_new\":{\"val\":\"0\"}},\"eslot\":\"5\"}",1680030297,2068706,-1,51,-1],[2068443,1,454524,3264,1,0,"{\"epos\":\"0\",\"eslot\":\"0\",\"dlc\":1}",1677175764,2068728,-1,19,-1],[2068447,1,454522,3264,1,0,"{\"epos\":\"10\",\"eslot\":\"10\",\"dlc\":1}",1677175764,2068728,-1,19,-1]]],["226954",[[12887964,30,451845,226954,1,0,"{}",1677204538,2,-1,19,2147483647],[12887999,1,453412,226954,1,0,"{}",1677204538,4,-1,3,2147483647],[12887966,28,451866,226954,1,0,"{}",1677204538,6,-1,19,2147483647],[12887951,31,454504,226954,1,0,"{\"att\":{\"is_new\":{\"val\":\"0\"}},\"epos\":\"23\",\"eslot\":\"23\",\"dlc\":1}",1677204538,12887964,-1,19,-1],[12887969,31,453182,226954,1,0,"{\"epos\":\"1\",\"eslot\":\"1\"}",1677204538,12887964,-1,19,2147483647],[12887972,31,453179,226954,1,0,"{\"epos\":\"0\",\"eslot\":\"0\"}",1677204538,12887964,-1,19,2147483647],[12887973,31,453181,226954,1,0,"{\"epos\":\"2\",\"eslot\":\"2\"}",1677204538,12887964,-1,19,2147483647],[12888020,31,454103,226954,1,0,"{\"epos\":\"21\",\"eslot\":\"21\"}",1677204538,12887964,-1,19,2147483647],[12888021,31,454102,226954,1,0,"{\"epos\":\"22\",\"eslot\":\"22\"}",1677204538,12887964,-1,19,2147483647],[12888023,31,454089,226954,1,0,"{\"epos\":\"14\",\"eslot\":\"14\"}",1677204538,12887964,-1,19,2147483647],[12888024,31,454088,226954,1,0,"{\"epos\":\"15\",\"eslot\":\"15\"}",1677204538,12887964,-1,19,2147483647],[12888025,31,454082,226954,1,0,"{\"epos\":\"8\",\"eslot\":\"8\"}",167720 +(I) [13:43:56.709] [000022800]: WorldwideAutomatchService::OnStartComplete - detected successful game start +(I) [13:43:56.709] [000022800]: WorldwideAutomatchService::OnStartComplete - forcing pollcomplete event +(I) [13:43:56.709] [000022800]: GameApp::SetTargetState : new (Game) old (Uninitialized) +(I) [13:43:56.718] [000022800]: MOD - Setting player [0] race to: [137123] +(I) [13:43:56.719] [000022800]: MOD - Setting player [1] race to: [203852] +(I) [13:43:56.721] [000022800]: ModDllSetup: SetStatsGameUID=23473293 +(I) [13:43:56.721] [000022800]: GAME -- Scenario: data:scenarios\multiplayer\twin_beach_2p_mkii\twin_beach_2p_mkii +(I) [13:43:56.721] [000022800]: GAME -- Win Condition Qualified Name: 00000000000000000000000000000000:3318379781 +(I) [13:43:56.721] [000022800]: GAME -- Win Condition Name: VictoryPoint +(I) [13:43:56.721] [000022800]: GAME -- Human Player: 0 bobcheck 226954 0 germans +(I) [13:43:56.721] [000022800]: GAME -- Human Player: 1 Wolfsindis 3264 1 british_africa +(I) [13:43:56.721] [000022800]: GameApp::SetState : new (LoadingGame) old (UnloadedGame) +(I) [13:43:56.914] [000022800]: WorldwideAutomatch2Service::OnPollComplete - I am peer 2, ihost:0, islocal:1 +(I) [13:43:56.914] [000022800]: WorldwideAutomatch2Service::OnPollComplete - All players in session and ready, automatch process complete +(I) [13:43:57.542] [000022800]: GameObj::StartGameObj - info, network session GUID set to [23473293]. +(I) [13:43:57.542] [000013472]: Loading step: [OnBeginLoad] +(I) [13:43:57.543] [000013472]: Loading step: [Assign Players] +(I) [13:43:57.543] [000013472]: Loading step: [FXReflection] +(I) [13:43:57.543] [000013472]: Loading step: [FXDataContext] +(I) [13:43:57.543] [000013472]: Loading step: [FX Texture Pack] +(I) [13:43:57.545] [000013472]: Loading step: [Run Havok Garbage Collection] +(I) [13:43:57.545] [000013472]: Loading step: [Flush Inventory On Application Exit] +(I) [13:43:57.545] [000013472]: Loading step: [Default World] +(I) [13:43:57.559] [000013472]: Loading step: [FX Command Function] +(I) [13:43:57.559] [000013472]: Loading step: [AnimatorCommandFunction] +(I) [13:43:57.559] [000013472]: Loading step: [MemShrink] +(I) [13:43:57.559] [000013472]: Loading step: [Sync Checking] +(I) [13:43:57.559] [000013472]: Loading step: [Tuning Variant] +(I) [13:43:57.559] [000013472]: Using scenario tuning variant [default] +(I) [13:43:57.559] [000013472]: Loading step: [Mod Packs] +(I) [13:43:57.559] [000013472]: Loading step: [SimVis System] +(I) [13:43:57.559] [000013472]: Loading step: [DefaultWorld] +(I) [13:43:57.559] [000013472]: Loading step: [Visual Physics ME] +(I) [13:43:57.559] [000013472]: Loading step: [Deferred Decal Manager] +(I) [13:43:57.559] [000013472]: Loading step: [FogVolumeManager] +(I) [13:43:57.559] [000013472]: Loading step: [Vehicle Physics Function] +(I) [13:43:57.559] [000013472]: Loading step: [Unit Occlusion Function] +(I) [13:43:57.559] [000013472]: Loading step: [Splat Function] +(I) [13:43:57.559] [000013472]: Loading step: [Grass Function] +(I) [13:43:57.559] [000013472]: Loading step: [Object Alpha Factor Function] +(I) [13:43:57.559] [000013472]: Loading step: [Renderable Managers] +(I) [13:43:57.559] [000013472]: Loading step: [Setup Skins] +(I) [13:43:57.559] [000013472]: Loading step: [AnimEventSetup] +(I) [13:43:57.559] [000013472]: Loading step: [Session Precache] +(I) [13:43:57.767] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:43:57.767] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:43:57.767] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:43:57.767] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:43:57.767] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:43:57.767] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:43:57.767] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:43:57.767] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:43:57.767] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:43:57.767] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:43:57.767] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:43:57.767] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:43:57.767] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:43:57.767] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:43:57.767] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:43:57.767] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:43:57.767] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:43:57.767] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:43:57.767] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:43:57.767] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:43:57.767] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:43:57.767] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:43:57.767] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:43:57.767] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:43:57.767] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:43:57.767] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:43:57.767] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:43:57.794] [000013472]: Loading step: [Precache core resources] +(I) [13:43:57.794] [000013472]: Loading step: [Precache EBPs] +(I) [13:43:57.795] [000013472]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [13:43:57.795] [000013472]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [13:43:57.795] [000013472]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [13:43:57.795] [000013472]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [13:43:58.281] [000013472]: Loading step: [Precache State Tree references] +(I) [13:43:58.345] [000013472]: Loading step: [Load Actions] +(I) [13:43:58.347] [000013472]: Loading step: [Load Resources from Precache] +(I) [13:44:03.010] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5e74327118949d3383454f0dee4189d01d9b2615ae49cb298ae27811377e931d +(I) [13:44:03.118] [000013472]: Loading step: [GEWorld] +(I) [13:44:03.118] [000013472]: GAME - InitializeGEWorld +(I) [13:44:03.265] [000013472]: Re-winding a compressed stream for file 'data:scenarios\multiplayer\twin_beach_2p_mkii\twin_beach_2p_mkii.scenario'. Expensive operation +(I) [13:44:03.982] [000013472]: Regenerating ImpassMap data... +(I) [13:44:04.090] [000013472]: Regenerating SimTerrainCoverMap data... +(I) [13:44:04.107] [000013472]: SimTerrainCoverMap generation took 0.017336 seconds. +(I) [13:44:05.131] [000013472]: Pathfinding::Regenerate()... +(I) [13:44:05.233] [000013472]: Pathfinding::Regenerate() Done. +(I) [13:44:05.374] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.396] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.397] [000013472]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:44:05.575] [000013472]: GAME - CreateGEWorld in 2456 ms +(I) [13:44:05.575] [000013472]: SIM -- Setting SyncErrorChecking level to Low +(I) [13:44:05.575] [000013472]: Loading step: [Load Resources from GEWorld] +(I) [13:44:06.710] [000013472]: Loading step: [Sound Banks] +(I) [13:44:06.710] [000013472]: Loading step: [Session] +(I) [13:44:06.710] [000013472]: GAME - SessionSetup +(I) [13:44:06.711] [000013472]: GAME - SessionSetup finished in 0 ms +(I) [13:44:06.711] [000013472]: Loading step: [Player Setup] +(I) [13:44:06.718] [000013472]: GAME -- Recording game +(I) [13:44:06.718] [000013472]: Loading step: [Scenario Lua System] +(I) [13:44:06.739] [000013472]: Loading step: [Team Colour Init] +(I) [13:44:06.739] [000013472]: Loading step: [Race Precaching Event Listener Registration] +(I) [13:44:06.739] [000013472]: Loading step: [Simulation] +(I) [13:44:06.770] [000013472]: LoadWinCondition: - [winconditions\mode_victorypoint] succeeded. +(I) [13:44:07.210] [000013472]: Player [] killed on game tick [0] due to [unused player] +(I) [13:44:07.210] [000013472]: Player [] killed on game tick [0] due to [unused player] +(I) [13:44:07.210] [000013472]: Player [] killed on game tick [0] due to [unused player] +(I) [13:44:07.210] [000013472]: Player [] killed on game tick [0] due to [unused player] +(I) [13:44:07.210] [000013472]: Player [] killed on game tick [0] due to [unused player] +(I) [13:44:07.210] [000013472]: Player [] killed on game tick [0] due to [unused player] +(I) [13:44:07.210] [000013472]: Player [] killed on game tick [0] due to [unused player] +(I) [13:44:07.210] [000013472]: Player [] killed on game tick [0] due to [unused player] +(I) [13:44:07.210] [000013472]: Player [] killed on game tick [0] due to [unused player] +(I) [13:44:07.210] [000013472]: Player [] killed on game tick [0] due to [unused player] +(I) [13:44:07.210] [000013472]: Player [] killed on game tick [0] due to [unused player] +(I) [13:44:07.210] [000013472]: Player [] killed on game tick [0] due to [unused player] +(I) [13:44:07.210] [000013472]: Player [] killed on game tick [0] due to [unused player] +(I) [13:44:07.210] [000013472]: Player [] killed on game tick [0] due to [unused player] +(I) [13:44:07.610] [000013472]: Loading step: [GameUICore System] +(I) [13:44:07.621] [000013472]: Loading step: [UI System] +(I) [13:44:07.621] [000013472]: Loading step: [LUA] +(I) [13:44:07.621] [000013472]: Loading step: [Game Event Listener Registration] +(I) [13:44:07.621] [000013472]: Loading step: [CPU AI] +(I) [13:44:07.628] [000013472]: Loading step: [Scar Init] +(I) [13:44:07.628] [000013472]: Loading step: [FX System] +(I) [13:44:07.628] [000013472]: Loading step: [Cheat Menu] +(I) [13:44:07.632] [000013472]: Loading step: [Scar Start] +(I) [13:44:07.633] [000013472]: Loading step: [Load resources] +(I) [13:44:07.634] [000013472]: Loading step: [PreDisplay] +(I) [13:44:07.634] [000013472]: Loading step: [Free Loading Data] +(I) [13:44:07.634] [000013472]: PreloadResources took 0ms. +(I) [13:44:07.634] [000013472]: Loading step: [MemShrink] +(I) [13:44:07.634] [000013472]: Loading step: [Flush Inventory] +(I) [13:44:07.834] [000013472]: Loading step: [Resolve Impasse Blockers] +(I) [13:44:07.834] [000013472]: Loading step: [Convert OOB Static Entities to Visual Only Objects] +(I) [13:44:07.834] [000013472]: Loading step: [DefaultWorld Begin Play] +(I) [13:44:07.888] [000013472]: Loading step: [Preparing game] +(I) [13:44:07.888] [000013472]: Loading step: [Start Renderer] +(I) [13:44:07.888] [000013472]: Loading step: [FrontEnd simulation initialization] +(I) [13:44:07.888] [000013472]: Loading step: [WPFGFrontEnd loading] +(I) [13:44:07.944] [000013472]: Loading step: [OnEndLoad] +(I) [13:44:08.285] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:2]" finished loading with checksum [1493108416]. +(I) [13:44:09.274] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [1493108416]. +(I) [13:44:09.277] [000022800]: PerformanceRecorder::StartRecording for game size 2 +(I) [13:44:09.277] [000022800]: GAME -- Starting mission: data:scenarios\multiplayer\twin_beach_2p_mkii\twin_beach_2p_mkii +(I) [13:44:09.277] [000022800]: MEM -- available page 7515 mb, total page 40074 mb +(I) [13:44:09.282] [000022800]: GameApp::SetState : new (Game) old (LoadingGame) +(I) [13:44:09.282] [000022800]: GameApp::SetTargetState : new (Uninitialized) old (Game) +(I) [13:44:14.226] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d90a79d6e1010a654c5c9a1ae10839cfbd6b7e25b3397338e8d90618018d07bd +(I) [13:44:18.005] [000022800]: Local user framerate is [0.000000] +(I) [13:44:18.005] [000022800]: Local user MinDelay=[1ms], MaxDelay=[41ms], AvgDelay=[25ms], minRTT[31ms], maxRTT[469ms], avgRTT[111ms] +(I) [13:44:34.009] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4201e9c1e3f12388f6007544d33ec230f51c43ac0f024fb7b90de8ccaa2cb6e3 +(I) [13:44:39.000] [000022800]: Local user framerate is [123.937599] +(I) [13:44:39.000] [000022800]: Local user MinDelay=[1ms], MaxDelay=[53ms], AvgDelay=[35ms], minRTT[19ms], maxRTT[469ms], avgRTT[99ms] +(I) [13:44:43.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=89/20, mdat=266/532, voip=0/0, rchk=0/0, nudg=3/8, Thdr=0/0, Peer=17/28, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=17/14, lb_p=26/7, lb_c=0/0, cast=0/0, cdat=70/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:44:49.002] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=9/0, mdat=48/96, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=3/1, lb_c=0/0, cast=0/0, cdat=9/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:44:57.010] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b17565d011bb97cc532d80d67c892b58b364f62c8c57ae197924d43fa26eea08 +(I) [13:45:00.002] [000022800]: Local user framerate is [121.477104] +(I) [13:45:00.002] [000022800]: Local user MinDelay=[1ms], MaxDelay=[66ms], AvgDelay=[40ms], minRTT[19ms], maxRTT[469ms], avgRTT[84ms] +(I) [13:45:20.017] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=26b3552631353f2345d7bb9d453b5a4fab609cdce84db035be7f64da11f4484d +(I) [13:45:21.004] [000022800]: Local user framerate is [113.449997] +(I) [13:45:21.004] [000022800]: Local user MinDelay=[39ms], MaxDelay=[63ms], AvgDelay=[50ms], minRTT[39ms], maxRTT[134ms], avgRTT[61ms] +(I) [13:45:42.002] [000022800]: Local user framerate is [120.893944] +(I) [13:45:42.002] [000022800]: Local user MinDelay=[39ms], MaxDelay=[68ms], AvgDelay=[51ms], minRTT[16ms], maxRTT[138ms], avgRTT[60ms] +(I) [13:45:44.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=193/0, mdat=440/880, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=27/7, lb_c=0/0, cast=0/0, cdat=170/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:45:47.591] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9b031b43c1d2f90f473ed666e97f5a2261e802165003def126c2d52735b915ad +(I) [13:45:50.003] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=31/0, mdat=48/96, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=3/1, lb_c=0/0, cast=0/0, cdat=28/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:46:03.003] [000022800]: Local user framerate is [118.270424] +(I) [13:46:03.003] [000022800]: Local user MinDelay=[39ms], MaxDelay=[68ms], AvgDelay=[51ms], minRTT[16ms], maxRTT[138ms], avgRTT[61ms] +(I) [13:46:07.023] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=be6aac52ef8b799595d63b7502f81c32a626e87185637929c5927cf4254b205e +(I) [13:46:18.035] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d16ddeec8c434dceb31c6ca5902684aff2cb163c2e31149a1639dd17e784bb7d +(I) [13:46:24.001] [000022800]: Local user framerate is [117.538239] +(I) [13:46:24.001] [000022800]: Local user MinDelay=[43ms], MaxDelay=[66ms], AvgDelay=[54ms], minRTT[19ms], maxRTT[150ms], avgRTT[65ms] +(I) [13:46:26.087] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1ee50cbcf53ccca1b4b3630517287e89169e6fd5d37f95a2c0d4f947a880d473 +(I) [13:46:33.178] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=36d5d1e25024fe266740c078a683831e96ee6a9ac0eea29288df0564421c4a27 +(I) [13:46:40.143] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:46:40.143] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:46:40.143] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:46:40.143] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:46:40.143] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:46:40.143] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:46:40.143] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:46:40.143] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:46:40.143] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:46:40.143] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:46:40.143] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:46:40.143] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:46:40.143] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:46:40.143] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:46:40.143] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:46:40.143] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:46:40.143] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:46:40.143] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:46:40.143] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:46:40.143] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:46:40.143] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:46:40.143] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:46:40.143] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:46:40.143] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:46:40.143] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:46:40.143] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:46:40.143] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:46:40.438] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:46:40.438] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:46:40.438] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:46:40.438] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:46:40.438] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:46:40.438] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:46:45.002] [000022800]: Local user framerate is [116.353455] +(I) [13:46:45.002] [000022800]: Local user MinDelay=[41ms], MaxDelay=[67ms], AvgDelay=[53ms], minRTT[19ms], maxRTT[150ms], avgRTT[64ms] +(I) [13:46:45.010] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=226/0, mdat=440/880, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=27/7, lb_c=0/0, cast=0/0, cdat=206/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:46:46.047] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=64212f2fe3edf11f52260a2bb785e173b5de414a9720a4fa8229cecd0feca2fb +(I) [13:46:51.009] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=27/0, mdat=48/96, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=4/1, lb_c=0/0, cast=0/0, cdat=24/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:47:00.115] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2fb11983590cff1b8008c16cf52362fa4d2a777663f3d4a1b59ee7c8c2317e5c +(I) [13:47:03.444] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8414bbe99f85a61cbb56b5401a7a3bfb36b91c2254274968fb344c8f2638c091 +(I) [13:47:06.001] [000022800]: Local user framerate is [122.557091] +(I) [13:47:06.001] [000022800]: Local user MinDelay=[40ms], MaxDelay=[67ms], AvgDelay=[52ms], minRTT[19ms], maxRTT[184ms], avgRTT[66ms] +(I) [13:47:06.375] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3ab3eb0aceeb3965c3407c64bca0e687ab9e581d22b1fe73ef71e761f2fe9259 +(I) [13:47:14.640] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=04940af96d6cbb63917096619bde11f4d2fa71eec75e13cd9cb2656900dcd6cd +(I) [13:47:18.329] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6401e367feb38068be8ff9e7b8fec1eb13bbdfa54556a7b180b1c724e9602fdb +(I) [13:47:19.413] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=971e39d60fd91f7825836a5022e4fe75fcb85fa8522b155d8f491f284ffe2b19 +(I) [13:47:20.561] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e9d72556e5b47ddd73aaa888119f5a4ec3157638f19adbe04313bf80482cfa6b +(I) [13:47:23.463] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3b78e7ce8150eb9649a50bb1b99474faa909913730347ee94914d4fca498273d +(I) [13:47:27.004] [000022800]: Local user framerate is [112.400002] +(I) [13:47:27.004] [000022800]: Local user MinDelay=[43ms], MaxDelay=[81ms], AvgDelay=[53ms], minRTT[24ms], maxRTT[150ms], avgRTT[69ms] +(I) [13:47:29.707] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fd661c33901b28a53989f60ef58ee1abea816ca6489667ff853b8acc486c722b +(I) [13:47:38.292] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fa9fd04669f3a979243556218d760fad71c0330229d028be34359e6ee64864ca +(I) [13:47:42.608] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1b5e4d28cfbb89281f5b1f8620563b7e2f84ae5c4f4576a52636808a1df37c85 +(I) [13:47:46.004] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=241/0, mdat=440/880, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=27/7, lb_c=0/0, cast=0/0, cdat=212/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:47:46.499] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=30a694a4c158dbf0a5af9352dc87810fdcb2139ac396c10e89f4c0b9b7f1ecd7 +(I) [13:47:48.005] [000022800]: Local user framerate is [109.589035] +(I) [13:47:48.005] [000022800]: Local user MinDelay=[43ms], MaxDelay=[81ms], AvgDelay=[54ms], minRTT[24ms], maxRTT[178ms], avgRTT[70ms] +(I) [13:47:52.004] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=15/0, mdat=48/96, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=3/1, lb_c=0/0, cast=0/0, cdat=14/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:47:57.384] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=44d6fbe8b0e81aa83a30e749c6973d7dd2ebe815477e526217a4f2abd02d123a +(I) [13:48:05.500] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=93bc0579513533930be0e12edc90b208dc143730278510b58155bb29f3689346 +(I) [13:48:09.000] [000022800]: Local user framerate is [110.416870] +(I) [13:48:09.000] [000022800]: Local user MinDelay=[43ms], MaxDelay=[81ms], AvgDelay=[54ms], minRTT[22ms], maxRTT[180ms], avgRTT[71ms] +(I) [13:48:10.183] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=28fa9c7c9adae722bc7048bd939c49610797a009d2ae150ca1aaaa7f1e841c23 +(I) [13:48:15.859] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6da95bed443a463e4d502f82bcab34cb474a840ffbf3fb84eb2c22981f856b66 +(I) [13:48:30.000] [000022800]: Local user framerate is [109.039093] +(I) [13:48:30.000] [000022800]: Local user MinDelay=[39ms], MaxDelay=[64ms], AvgDelay=[53ms], minRTT[30ms], maxRTT[182ms], avgRTT[60ms] +(I) [13:48:35.009] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2ac59640b8c18627d5e2ca40462f8b66552f1c599488acef967cbfe1e28a540e +(I) [13:48:43.401] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=48ecc4d03e4d728fddeb39a8a666f1a44a8869707455673205e24485d3bcd1c5 +(I) [13:48:47.010] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=245/0, mdat=439/878, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=27/7, lb_c=0/0, cast=0/0, cdat=205/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:48:51.007] [000022800]: Local user framerate is [111.299911] +(I) [13:48:51.007] [000022800]: Local user MinDelay=[38ms], MaxDelay=[65ms], AvgDelay=[54ms], minRTT[30ms], maxRTT[183ms], avgRTT[61ms] +(I) [13:48:53.008] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=21/0, mdat=48/96, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=3/1, lb_c=0/0, cast=0/0, cdat=17/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:48:53.380] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7efdc628fa7fcaf3ee62d682e62f1280a54daad572c20c76604103698bf83447 +(I) [13:48:57.391] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c0c383f58a9a737aac2863ec2e660d54110873de1945485dc5187be7418c49ac +(I) [13:49:04.135] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5ae647cc0679219635fa8c899d63ce996f7e0ea057f30a6b624e4f77e9104fde +(I) [13:49:07.407] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=45a9c959951f9a63540ba3484d537243adb8ba3c405686276bd62a43b84d30c4 +(I) [13:49:12.006] [000022800]: Local user framerate is [105.247375] +(I) [13:49:12.006] [000022800]: Local user MinDelay=[45ms], MaxDelay=[67ms], AvgDelay=[53ms], minRTT[40ms], maxRTT[124ms], avgRTT[65ms] +(I) [13:49:12.192] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b2a670d96234d2c045be9b6b499707c6599cf02022215e19d2aae6c87ec48d89 +(I) [13:49:18.397] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e2fb6641815ae92b7712d8e84db44cb9dc7b71de07fd556ee9bbc8082a029f61 +(I) [13:49:20.671] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=05bb2b07100ba6b1be1bea5b2ea5572b3334701ed11d190f327cb8ae1eb6d95d +(I) [13:49:23.995] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c0b932ef9d4bf5ed49dcb74f2037a1f22a45f8476f41c3806ced0004332255aa +(I) [13:49:33.007] [000022800]: Local user framerate is [99.145035] +(I) [13:49:33.007] [000022800]: Local user MinDelay=[43ms], MaxDelay=[74ms], AvgDelay=[56ms], minRTT[17ms], maxRTT[147ms], avgRTT[61ms] +(I) [13:49:38.755] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c8848dc48adb479e9ce3d28206f3a20e374abbf0133aec86f4ba15edfc2d5daf +(I) [13:49:48.010] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=256/0, mdat=440/880, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=29/8, lb_c=0/0, cast=0/0, cdat=216/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:49:48.125] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ce7e07ad8bf728e3c49cd0d58352754ba9cfdbd71ccef8cc5782452cf2f1c02d +(I) [13:49:54.001] [000022800]: Local user framerate is [104.029182] +(I) [13:49:54.001] [000022800]: Local user MinDelay=[43ms], MaxDelay=[74ms], AvgDelay=[57ms], minRTT[17ms], maxRTT[147ms], avgRTT[58ms] +(I) [13:49:54.008] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=29/0, mdat=48/96, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=2/0, lb_c=0/0, cast=0/0, cdat=25/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:50:08.017] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c170f7000d793e8ceca8a4cd9a062497b232e6071a7afee74d9d909d0bac17af +(I) [13:50:15.018] [000022800]: Local user framerate is [105.528885] +(I) [13:50:15.018] [000022800]: Local user MinDelay=[31ms], MaxDelay=[73ms], AvgDelay=[60ms], minRTT[30ms], maxRTT[87ms], avgRTT[47ms] +(I) [13:50:20.781] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ff3c57451d960d152bee715450b75348b2f1287cf13b6e23d61e5978088a9ed4 +(I) [13:50:26.447] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fc1fa3b11e150ce4de59b2834951ca097351351b608aabcd430e0af2b9ca4c4b +(I) [13:50:30.713] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2d7981e5bbfc7c8de86f853c7ee05f4a5eddad1fd8446e997f806e49111e80ef +(I) [13:50:35.674] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ecc0c49a9d0a4ae4e525bad2196ee152812a08f9d0d3988de37c76488e836623 +(I) [13:50:36.006] [000022800]: Local user framerate is [101.104500] +(I) [13:50:36.006] [000022800]: Local user MinDelay=[31ms], MaxDelay=[81ms], AvgDelay=[60ms], minRTT[23ms], maxRTT[149ms], avgRTT[57ms] +(I) [13:50:36.927] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e177ff86e20ad3606ccd1c84f08328f62dd2708ef63db90cd9c6eaecce99aecb +(I) [13:50:39.777] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1c4ee110562c8a4ae189972008a64ad932c1d9e9fec44924bfe0017ce3d71aa5 +(I) [13:50:44.482] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=04d1522665881a925151b00a6f4e680ab98bd36cab2f885b79a4e02e00a9358c +(I) [13:50:49.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=236/0, mdat=440/880, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=28/8, lb_c=0/0, cast=0/0, cdat=205/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:50:49.933] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9448a2f7b45f0e979c5612f309481b620bcac1c5591709e1d028af613a5301a0 +(I) [13:50:53.763] [000022800]: GameObj::SchedulePeerForDestruction - info, frame [3230], peer for station [1] scheduled for destruction on frame 3231. +(I) [13:50:53.763] [000022800]: GameObj::SchedulePeerForDestruction - handling UI call to inform user of drop. +(I) [13:50:53.763] [000022800]: GAME -- Frame 3230 - SchedulePeerForDestruction - peer 1000 scheduledfor destruction +(I) [13:50:53.777] [000022800]: Picked to migrate AI to network station id: 2 +(I) [13:50:53.869] [000022800]: GameObj - AI Simulation for player [1000] migrated to local station [2]. +(I) [13:50:53.869] [000022800]: GameObj::KillAllDropped - Processing disconnected player [1000], set to migrate to station [2]. +(I) [13:50:54.015] [000022800]: MOD -- Player bobcheck set to AI Type: Remote Human Takeover (frame 3232) (CmdAI) +(I) [13:50:55.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=22/0, mdat=48/96, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=2/0, lb_c=0/0, cast=0/0, cdat=19/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:50:56.093] [000022800]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [13:50:56.093] [000022800]: WorldwidePartyService::PeerRemove, Removing peer ID: 1 +(I) [13:50:56.093] [000022800]: peerremove - peerIDRemoved=226954, reasonID=1000, reason debug hint - MatchSetup::Disconnect +(I) [13:50:56.094] [000022800]: ServerSynchronization::OnDestroyedPeerEvent - info, drop event received for remote station [1]. +(I) [13:50:56.094] [000022800]: GameObjController - OnMatchEvent: event type 1 +(I) [13:50:56.094] [000022800]: WorldwideAdvertisementService::Process - EVENT_HOSTMIGRATION +(I) [13:50:56.094] [000022800]: WorldwidePartyService::OnHostMigration - [5868323] Hosting has migrated to us, updating match info +(I) [13:50:56.094] [000022800]: GameObjController - OnMatchEvent: event type 7 +(I) [13:50:56.102] [000022800]: Sending matchinfo change #49 +(I) [13:50:56.102] [000022800]: GameObjController - OnMatchEvent: event type 6 +(E) [13:50:56.200] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:50:56.601] [000022800]: GameObjController - OnMatchEvent: event type 10 +(I) [13:50:57.002] [000022800]: Local user framerate is [98.305756] +(I) [13:50:57.002] [000022800]: Local user MinDelay=[11ms], MaxDelay=[81ms], AvgDelay=[60ms], minRTT[22ms], maxRTT[149ms], avgRTT[58ms] +(I) [13:50:58.768] [000022800]: MOD -- Game Over at frame 3270 +(I) [13:50:58.884] [000022800]: Report sent for profileID[226954] -> race=[137123], result=[0], XP Gain=[963] +(I) [13:50:58.884] [000022800]: Report sent for profileID[3264] -> race=[203852], result=[1], XP Gain=[2709] +(I) [13:50:58.907] [000022800]: Party::SetStatus - S_CONFIGURING +(I) [13:50:58.923] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=096ee71c706dc5ecda7c756f0a2b7eab1742d09b5702013d47dd60eaea635b01 +(I) [13:50:58.923] [000022800]: Sending matchinfo change #11 +(E) [13:50:59.024] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:50:59.549] [000022800]: MPMatchSetup::OnMatchEvent - MET_ReportResults - result [0] +(I) [13:50:59.549] [000022800]: GameObjController - OnMatchEvent: event type 9 +(I) [13:50:59.736] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e9d68dcb9091c6c18db908e832727d72a2af8e22d3e03200f77bbcfbc3213d19 +(I) [13:50:59.797] [000023200]: Read bytes [0,"AvatarStatsUpdatedMessage",3264,[[[4,3264,66,"",1680522659]]]] +(I) [13:50:59.797] [000023200]: Read bytes [0,"AvatarStatsUpdatedMessage",3264,[[[5,3264,41,"",1680522659]]]] +(I) [13:50:59.797] [000023200]: Read bytes [0,"AvatarStatsUpdatedMessage",3264,[[[6,3264,84432,"",1680522659]]]] +(I) [13:50:59.797] [000023200]: Read bytes [0,"AvatarStatsUpdatedMessage",3264,[[[14,3264,15458,"",1680522659]]]] +(I) [13:50:59.797] [000023200]: Read bytes [0,"AvatarUpdateMessage",3264,[[2714,3264,"/steam/76561198023526153","","Wolfsindis","",15990,2231,2231,2074389,null,"76561198023526153",3,[]]]] +(I) [13:50:59.797] [000023200]: Read bytes [0,"GameResultNotificationMessage",3264,[[[3264,20,203852,1,[1],15990,[["unitprod",25],["vvetrank",1],["cabil",0],["dmgdone",1505],["plost",1],["svetrank",0],["reqmax",0],["cpearn",1],["reqspnt",0],["powearn",0],["blost",0],["elitekill",1],["edeaths",9],["structdmg",0],["pcap",17],["inactperiod",20],["lowintperiod",0],["precap",6],["sqkill",6],["popmax",0],["powspnt",0],["sqprod",6],["bprod",8],["svetxp",0],["vabnd",0],["addonkill",17],["totalcmds",497],["gammaspnt",0],["vkill",1],["objdmh",0],["abil",2],["sqlost",0],["vcap",0],["vlost",0],["gt",408],["upg",15],["vvetxp",800],["reqearn",0],["vp1",0],["vp0",0],["erein",5],["cflags",0],["wpnpu",0],["ekills",18],["powmax",0],["vprod",0]],0,10,[],null,[],[],[],[],[],[]],[226954,20,137123,0,[1],100142,[["unitprod",21],["vvetrank",0],["cabil",2],["dmgdone",742],["plost",6],["svetrank",0],["reqmax",0],["cpearn",1],["reqspnt",0],["powearn",0],["blost",0],["elitekill",0],["edeaths",17],["structdmg",0],["pcap",9],["inactperiod",24],["lowintperiod",0],["precap",0],["sqkill",0],["popmax",0],["powspnt",0],["sqprod",7],["bprod",6],["svetxp",0],["vabnd",0],["addonkill",8],["totalcmds",175],["gammaspnt",0],["vkill",0],["objdmh",0],["abil",4],["sqlost",6],["vcap",0],["vlost",1],["gt",403],["upg",7],["vvetxp",0],["reqearn",0],["vp1",0],["vp0",0],["erein",1],["cflags",0],["wpnpu",0],["ekills",8],["powmax",0],["vprod",1]],0,0,[],null,[],[],[],[],[],[]]],[[15990,2130257,10,5,2,0,0,614,2260,273,1075,8,1152,1680522659],[100142,2130261,1,5,-3,0,0,-1,-1,-1,-1,-1,782,1680522659]],[[4,3264,66,"",1680522154],[5,3264,41,"",1680522154],[6,3264,84432,"",1680522154],[14,3264,15458,"",1680522154],[7,226954,7,"",1680040726],[9,226954,5136,"",1680040726],[15,226954,3930,"",1680040726]],5868323,"",[]]] +(I) [13:50:59.798] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:50:59.798] [000022800]: RNT_StatsUpdate: Win notification, profileID 3264, race =203852, level=8, ranking=614 +(I) [13:50:59.798] [000022800]: RNT_StatsUpdate: Loss notification, profileID 226954, race =137123, level=-1, ranking=-1 +(I) [13:51:00.244] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f94dd5310a6138a5ad2906bd91f6129a8bbf871ca33c9289eb7fd87d9d2cda2d +(I) [13:51:01.183] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:01.205] [000022800]: GetPartyStatsByID found 1 teams for user ID 3264 +(I) [13:51:01.457] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:01.457] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:01.457] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:01.457] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:01.457] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:01.457] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:01.457] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:01.457] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:01.457] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:01.457] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:01.457] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:01.457] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:01.457] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:01.457] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:01.457] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:01.457] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:01.457] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:01.457] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:01.457] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:01.457] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:01.457] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:01.457] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:01.457] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:01.457] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:01.457] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:01.457] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:01.457] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:01.570] [000022800]: GameApp::SetTargetState : new (UnloadedGame) old (Uninitialized) +(I) [13:51:01.582] [000022800]: GameApp::SetState : new (UnloadingGame) old (Game) +(I) [13:51:01.697] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:01.697] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:02.072] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:02.073] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:02.073] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:02.073] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:02.073] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:02.073] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:51:02.602] [000022800]: GameObj::ShutdownGameObj +(I) [13:51:02.602] [000022800]: GetMaxFrameTimeFromProfile: players=2 expected FPS=100.000000, bars=0, max avg=0.000, sd=0.000, 0 samples = +(I) [13:51:02.602] [000022800]: PerformanceRecorder::EndRecording - game size=2, max average=0.010172, worst frame=0.010000 +(I) [13:51:02.602] [000022800]: Recording: No [2 players] + +(I) [13:51:02.602] [000022800]: Max/Avg: 0.01, 0.01 sec (fps=98.31, 116.16) (20 samples) + +(I) [13:51:02.602] [000022800]: Bars: 0 + +(I) [13:51:02.603] [000022800]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_seconds_played] +(I) [13:51:02.603] [000022800]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_units_produced] +(I) [13:51:02.603] [000022800]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_units_killed] +(I) [13:51:02.603] [000022800]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_units_lost] +(I) [13:51:02.618] [000022800]: StatArtWarningsCount 0 +(I) [13:51:02.618] [000022800]: StatDataWarningsCount 0 +(I) [13:51:03.063] [000022800]: GameApp::SetState : new (UnloadedGame) old (UnloadingGame) +(I) [13:51:03.063] [000022800]: GameApp::SetTargetState : new (Uninitialized) old (UnloadedGame) +(I) [13:51:03.074] [000022800]: SessionID : 598b23 - Disconnect called with reasonID 1000 - MatchSetup::Disconnect +(I) [13:51:03.075] [000022800]: MatchSetupManager: Removed queued match [twin_beach_2p_mkii] Queue is now [0] +(I) [13:51:03.075] [000022800]: SessionID : 598b23 - Disconnect called with reasonID 1000 - MatchSetup::Disconnect +(I) [13:51:03.081] [000022800]: Disconnect process already running +(I) [13:51:03.085] [000022800]: SessionID : 598adf - Disconnect called with reasonID 1000 - Destroying Party +(E) [13:51:03.116] [000022800]: SetVisible called while !IsConnected +(E) [13:51:03.124] [000022800]: SetVisible called while !IsConnected +(I) [13:51:03.776] [000022800]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [13:51:03.776] [000022800]: WorldwidePartyService::PeerRemove, Removing peer ID: 2 +(I) [13:51:03.776] [000022800]: peerremove - peerIDRemoved=3264, reasonID=1000, reason debug hint - MatchSetup::Disconnect +(E) [13:51:03.780] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:03.790] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:03.801] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:03.813] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:03.824] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:03.834] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:03.845] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:03.857] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:03.868] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:03.879] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:03.889] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:03.900] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:03.912] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:03.923] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:03.935] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:03.946] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:03.957] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:03.968] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:03.979] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:03.990] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.001] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.012] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.024] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.035] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [13:51:04.039] [000022800]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [13:51:04.039] [000022800]: WorldwidePartyService::PeerRemove, Removing peer ID: 1 +(I) [13:51:04.039] [000022800]: peerremove - peerIDRemoved=3264, reasonID=1000, reason debug hint - Destroying Party +(E) [13:51:04.046] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.046] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.057] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.057] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.068] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.068] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.078] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.079] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.089] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.089] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.100] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.100] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.111] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.112] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.122] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.122] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.133] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.134] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.144] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.145] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.155] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.155] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.166] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.166] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.177] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.178] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.189] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.189] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.199] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.199] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.210] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.211] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.221] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.222] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [13:51:04.222] [000022800]: PeerRemoveAll - flushing local session peer data +(I) [13:51:04.222] [000022800]: LeaveSessionInternal - no action taken, needLeave=0, service=0 +(I) [13:51:04.222] [000022800]: Destroyed Matchinfo +(E) [13:51:04.223] [000022800]: Socks::Free: Socket 0/6484 did not close properly before being freed. +(I) [13:51:04.223] [000022800]: OnDestroyPartyNotification - partyID = 5868323, prevID = -1 +(I) [13:51:04.223] [000022800]: OnDestroyPartyNotification - partyID = 5868323, prevID = -1 +(E) [13:51:04.232] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.243] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.254] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.266] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.277] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.288] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.299] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.311] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.322] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.333] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.344] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.356] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.367] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.378] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.389] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.400] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.411] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.422] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.433] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.444] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.455] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.466] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.478] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.490] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.502] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.514] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.525] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.536] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:51:04.547] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [13:51:04.548] [000022800]: PeerRemoveAll - flushing local session peer data +(I) [13:51:04.548] [000022800]: LeaveSessionInternal - no action taken, needLeave=0, service=0 +(I) [13:51:04.548] [000022800]: Destroyed Matchinfo +(E) [13:51:04.548] [000022800]: Socks::Free: Socket 0/12232 did not close properly before being freed. +(I) [13:51:04.548] [000022800]: OnDestroyPartyNotification - partyID = 5868255, prevID = -1 +(I) [13:51:04.548] [000022800]: OnDestroyPartyNotification - partyID = 5868255, prevID = -1 +(I) [13:51:18.008] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1a1c6bfd00c7b47a3f72e4872cff33cbc73a2232d5a949074e4f88fe1fb7e03f +(I) [13:51:38.008] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d9cc7d58caefeb2b24d39cc867ab77b20fdd2a7350eae896a60e950f1049cbab +(I) [13:52:58.013] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=be26e0901bb217f388089082ec694149ecad849a273873879fdc6938796c6e9c +(I) [13:54:04.981] [000022800]: starting online hosting +(I) [13:54:05.787] [000022800]: OnlineHostAsync success +(I) [13:54:05.788] [000022800]: Created Matchinfo for sessionID 5868975 +(I) [13:54:05.788] [000022800]: OnJoinAdvertisementSuccess - joined online match, server leave notification required +(I) [13:54:05.788] [000022800]: starting local hosting +(I) [13:54:05.788] [000022800]: ValidateCustomData: called with 5587 bytes of custom data +(I) [13:54:05.788] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:05.789] [000022800]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [13:54:05.789] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:05.805] [000022800]: Sending matchinfo change #2 +(I) [13:54:05.806] [000022800]: HostAsync - got operation info 0:SessionOperationInfo::SUCCESS +(I) [13:54:05.809] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=1/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=1/0, Pdel=0/0, drop=0/0, data=1/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=3/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=3/0, lb_p=0/0, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=1/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:54:05.813] [000022800]: hosting - Session is connected +(E) [13:54:05.897] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:54:06.005] [000022800]: CreateSteamSessionAsync::Process: Successfully created lobby; lobbyId=109775243306856829 +(I) [13:54:06.246] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:06.246] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:06.246] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:06.246] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:06.246] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:06.246] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:06.246] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:06.246] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:06.246] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:06.246] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:06.246] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:06.246] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:06.246] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:06.246] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:06.246] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:06.246] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:06.246] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:06.246] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:06.246] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:06.246] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:06.246] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:06.246] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:06.246] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:06.246] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:06.246] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:06.246] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:06.246] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:06.876] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:06.876] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:06.876] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:06.876] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:06.876] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:06.876] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:06.993] [000023200]: Read bytes [0,"PlatformSessionUpdateMessage",3264,[5868975,"0",109775243306856829,""]] +(I) [13:54:06.996] [000022800]: Sending matchinfo change #3 +(E) [13:54:07.024] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:54:07.031] [000022800]: HostAsync - completed with HostResult = 0 +(I) [13:54:07.031] [000022800]: Party::SetHostJoinResult - 0 +(I) [13:54:07.032] [000022800]: Party::SetStatus - S_CONFIGURING +(I) [13:54:07.032] [000022800]: WorldwideAutomatchService::OnHostComplete - automatcher is no longer active - stopPollPending 0 automatchPollID 18446744073709551615 +(I) [13:54:07.127] [000022800]: Sending matchinfo change #4 +(E) [13:54:07.156] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:54:10.225] [000022800]: Sending matchinfo change #5 +(E) [13:54:10.275] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:54:10.611] [000022800]: Sending matchinfo change #6 +(E) [13:54:10.656] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:54:11.497] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [13:54:11.503] [000022800]: Sending matchinfo change #8 +(E) [13:54:11.531] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:54:11.918] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:11.932] [000022800]: GetPartyStatsByID found 1 teams for user ID 3264 +(I) [13:54:12.476] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [13:54:12.476] [000022800]: Sending matchinfo change #9 +(E) [13:54:12.533] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:54:22.001] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [13:54:22.205] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [13:54:24.013] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f631f8bacc71c8d5bd3a9b3f4fcfa2a5c2cb578023cdba2bfe5d6f115b70b9d0 +(I) [13:54:33.006] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [13:54:33.203] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [13:54:44.006] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [13:54:44.197] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [13:54:53.012] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=09e01e451c9d26afea34dec848a8ffe2f5d5f2312bdaa42965878e1ee52b8185 +(I) [13:54:55.002] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [13:54:55.227] [000022800]: Automatch2Internal - Server told us to host matchID [5869019] +(I) [13:54:55.227] [000022800]: WorldwideAutomatch2Service::OnHost - host request validated, attempting +(I) [13:54:55.227] [000022800]: WorldwideAutomatch2Service::OnHost - trying to host matchtype 20 +(I) [13:54:55.227] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [13:54:55.234] [000022800]: starting online hosting +(I) [13:54:55.841] [000022800]: OnlineHostAsync success +(I) [13:54:55.841] [000022800]: Created Matchinfo for sessionID 5869019 +(I) [13:54:55.841] [000022800]: OnJoinAdvertisementSuccess - joined online match, server leave notification required +(I) [13:54:55.841] [000022800]: starting local hosting +(I) [13:54:55.841] [000022800]: ValidateCustomData: called with 2837 bytes of custom data +(I) [13:54:55.841] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:55.842] [000022800]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [13:54:55.842] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:54:55.850] [000022800]: Sending matchinfo change #2 +(I) [13:54:55.851] [000022800]: HostAsync - got operation info 0:SessionOperationInfo::SUCCESS +(I) [13:54:55.856] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=1/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=1/0, Pdel=0/0, drop=0/0, data=1/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=3/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=3/0, lb_p=0/0, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=1/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:54:55.858] [000022800]: hosting - Session is connected +(I) [13:54:56.060] [000022800]: CreateSteamSessionAsync::Process: Successfully created lobby; lobbyId=109775243306858258 +(E) [13:54:56.081] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:54:56.808] [000023200]: Read bytes [0,"PlatformSessionUpdateMessage",3264,[5869019,"0",109775243306858258,""]] +(I) [13:54:56.810] [000022800]: Sending matchinfo change #3 +(I) [13:54:56.847] [000022800]: HostAsync - completed with HostResult = 0 +(I) [13:54:56.847] [000022800]: Creating an RLink chat channel (not a multiplayer game). +(I) [13:54:56.847] [000022800]: WorldwidePartyService::SetMatchState - state 0 unchanged ignoring +(I) [13:54:56.849] [000022800]: WorldwideAutomatchService::OnHostComplete - automatcher is no longer active - stopPollPending 0 automatchPollID 18446744073709551615 +(I) [13:54:56.849] [000022800]: Sending matchinfo change #10 +(E) [13:54:56.934] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:54:56.941] [000022800]: Sending matchinfo change #38 +(E) [13:54:56.956] [000022800]: Rejecting packet type 0 that claims to come from ourself +(E) [13:54:57.075] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:54:57.719] [000022800]: Sending matchinfo change #39 +(E) [13:54:57.957] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:55:00.073] [000022800]: ValidateCustomData: called with 1694 bytes of custom data +(I) [13:55:00.073] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:55:00.074] [000022800]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [13:55:00.074] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:55:00.076] [000022800]: WorldwideAutomatch2Service::Process - Got into game successfully, 2 players present, got correct slot settings - setting metadata +(I) [13:55:00.091] [000022800]: Sending matchinfo change #41 +(I) [13:55:00.704] [000022800]: Station [0:2] acknowledged matchinfo change #41 +(I) [13:55:01.342] [000022800]: Sending matchinfo change #42 +(I) [13:55:01.954] [000022800]: Station [0:2] acknowledged matchinfo change #42 +(I) [13:55:04.001] [000022800]: WorldwideAutomatch2Service::Process - Waiting, only 0 players ready +(I) [13:55:05.205] [000022800]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [13:55:05.205] [000022800]: WorldwidePartyService::PeerRemove, Removing peer ID: 2 +(I) [13:55:05.205] [000022800]: peerremove - peerIDRemoved=26279, reasonID=1000, reason debug hint - MatchSetup::Disconnect +(I) [13:55:05.205] [000022800]: GameApp::SetTargetState : new (UnloadedGame) old (Uninitialized) +(I) [13:55:05.205] [000022800]: MatchSetupManager: Removed queued match [cliff_crossing_2p] Queue is now [0] +(I) [13:55:05.205] [000022800]: SessionID : 598ddb - Disconnect called with reasonID 1000 - MatchSetup::Disconnect +(I) [13:55:05.219] [000022800]: Sending matchinfo change #43 +(E) [13:55:05.233] [000022800]: SetVisible called while !IsConnected +(E) [13:55:05.332] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:55:05.333] [000023200]: Read bytes [0,"Automatch2LeaveMatchMessage",3264,["5869019"]] +(I) [13:55:05.438] [000022800]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [13:55:05.438] [000022800]: WorldwidePartyService::PeerRemove, Removing peer ID: 1 +(I) [13:55:05.438] [000022800]: peerremove - peerIDRemoved=3264, reasonID=1000, reason debug hint - MatchSetup::Disconnect +(E) [13:55:05.439] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [13:55:05.446] [000022800]: Sending matchinfo change #11 +(E) [13:55:05.450] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.461] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.472] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.483] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.494] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.505] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.517] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.527] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.538] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.548] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.560] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.560] [000022800]: Rejecting packet type 0 that claims to come from ourself +(E) [13:55:05.570] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.581] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.593] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.604] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.615] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.626] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.637] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.648] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.658] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.669] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.680] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.691] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.702] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.712] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.723] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.734] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.745] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.756] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.767] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.778] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.788] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.799] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.810] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.821] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.832] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.844] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.856] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.866] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.877] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.889] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.900] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.911] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.921] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.932] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.943] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.954] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.966] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [13:55:05.976] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [13:55:05.979] [000022800]: PeerRemoveAll - flushing local session peer data +(I) [13:55:05.979] [000022800]: LeaveSessionInternal - no action taken, needLeave=0, service=0 +(I) [13:55:05.979] [000022800]: Destroyed Matchinfo +(E) [13:55:05.980] [000022800]: Socks::Free: Socket 0/6528 did not close properly before being freed. +(I) [13:55:05.980] [000022800]: OnDestroyPartyNotification - partyID = 5869019, prevID = -1 +(I) [13:55:05.980] [000022800]: OnDestroyPartyNotification - partyID = 5869019, prevID = 5868975 +(I) [13:55:06.002] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [13:55:06.009] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=0/0, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:55:06.193] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [13:55:15.010] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4be191cf2dcecc42264146dbadc957a8ba83f6fb0484aa45bcea35f7850ed2b7 +(I) [13:55:17.001] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [13:55:17.205] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [13:55:28.005] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [13:55:28.195] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [13:55:37.012] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6a4caee3dfbf5b40b4726ca2ca74eb75ec599927a0c43f4f84b47cfb760a97dc +(I) [13:55:39.001] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [13:55:39.198] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [13:55:50.004] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [13:55:50.187] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [13:55:59.008] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1b6db3f9c0a7dfe93d14dd2a36487de893fb7599079d4edfef5531aa512d49d8 +(I) [13:56:01.000] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [13:56:01.183] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [13:56:02.366] [000023200]: Read bytes [0,"Automatch2GameMessage",3264,["132716","5869085","cliff_crossing_2p","129494","1","2","2","1","authtoken","44.209.208.120",27001,27111,27211,[[5869085,3264,830,15990,129494,1,"/10.0.70.222"],[5869085,132716,890,26299,137123,0,"/10.0.70.19"]],""]] +(I) [13:56:02.370] [000022800]: AutomatchInternal - OnJoinAutomatch - Server told us join matchID=5869085, hostProfileID=132716 +(I) [13:56:02.370] [000022800]: AutomatchInternal - join request validated, attempting +(I) [13:56:02.818] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:56:02.847] [000022800]: JoinAsync: Starting AsyncJob... +(I) [13:56:03.370] [000022800]: OnlineJoinAsync success +(I) [13:56:03.370] [000022800]: Created Matchinfo for sessionID 5869085 +(I) [13:56:03.370] [000022800]: OnJoinAdvertisementSuccess - joined online match, server leave notification required +(I) [13:56:03.732] [000022800]: ValidateCustomData: called with 2837 bytes of custom data +(I) [13:56:03.732] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:56:03.732] [000022800]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [13:56:03.732] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:56:03.732] [000022800]: ValidateCustomData: called with 2000 bytes of custom data +(I) [13:56:03.732] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:56:03.732] [000022800]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [13:56:03.732] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:56:03.739] [000022800]: Accepted matchInfo updated 43 from host +(I) [13:56:03.747] [000022800]: JoinAsync - got operation info 0:SessionOperationInfo::SUCCESS +(I) [13:56:03.751] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=1/1, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/4, Pdel=0/0, drop=0/0, data=1/2, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=2/7, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=2/3, lb_p=2/2, lb_c=0/1, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(E) [13:56:03.961] [000022800]: JoinSteamSessionAsync::Process: Steam join lobby completed; failed=0 failureReason=-1 +(E) [13:56:03.961] [000022800]: JoinSteamSessionAsync::OnLobbyEnter: Error joining lobby; lobbyId=0 ioError=1 response=0 +(E) [13:56:03.976] [000022800]: JoinAsync: failed to join platform session. Continuing anyway +(I) [13:56:03.976] [000022800]: JoinAsync - completed with JoinResult = 0 +(I) [13:56:03.976] [000022800]: JoinAsync - completed with JoinResult = 0:AdvertisementJoinEvent::R_Success +(I) [13:56:03.976] [000022800]: Creating an RLink chat channel (not a multiplayer game). +(I) [13:56:03.976] [000022800]: WorldwideAutomatch2Service::OnJoinComplete - Completed Join with joinResult=0 matchID=5869085 +(I) [13:56:03.976] [000022800]: JoinAsync: AsyncJob Complete... +(I) [13:56:03.976] [000022800]: Sending matchinfo change #12 +(E) [13:56:04.082] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:56:04.190] [000022800]: WorldwideAutomatch2Service::Process - Got into game successfully, 2 players present, got correct slot settings - setting metadata +(I) [13:56:04.500] [000022800]: Accepted matchInfo updated 44 from host +(I) [13:56:07.004] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=3/4, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=3/4, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=3/2, lb_p=2/1, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:56:08.002] [000022800]: WorldwideAutomatch2Service::Process - Waiting, only 0 players ready +(I) [13:56:12.000] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [13:56:12.000] [000022800]: WorldwideAutomatch2Service::Process - Waiting, only 0 players ready +(I) [13:56:12.199] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [13:56:14.006] [000022800]: Party::SetStatus - S_PLAYING +(I) [13:56:14.033] [000022800]: Sending matchinfo change #13 +(E) [13:56:14.090] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [13:56:15.249] [000022800]: Accepted matchInfo updated 45 from host +(I) [13:56:16.001] [000022800]: WorldwideAutomatch2Service::Process - Got into game successfully, 2 players present, got correct slot settings - readying up +(I) [13:56:16.002] [000022800]: WorldwidePartyService::RequestReady: Sending PlayerReadyRequest; profileID=3264 isReady=1 isSuccessful=1 +(I) [13:56:16.257] [000022800]: Accepted matchInfo updated 46 from host +(I) [13:56:18.008] [000022800]: Accepted matchInfo updated 47 from host +(I) [13:56:18.008] [000022800]: WorldwideAutomatchService::OnStartComplete - detected successful game start +(I) [13:56:18.008] [000022800]: Match Started - [132716 /steam/76561198028089247], slot = 0, ranking = 890 +(I) [13:56:18.008] [000022800]: Match Started - [3264 /steam/76561198023526153], slot = 1, ranking = 830 +(I) [13:56:18.338] [000023200]: Read bytes [0,"MatchStartMessage",3264,[[[3264,["2068341","2068340"]],[132716,["2068340"]]],[["3264","129494"],["132716","137123"]],1680522977,[["3264",[[2068692,70,451707,3264,1,0,"{}",1677175765,2,-1,19,2147483647],[2068728,1,453412,3264,1,0,"{}",1677175765,4,-1,3,2147483647],[2068694,46,451861,3264,1,0,"{}",1677175765,6,-1,19,2147483647],[2068436,70,453392,3264,1,0,"{\"att\":{\"is_new\":{\"val\":\"0\"}},\"epos\":\"6\",\"eslot\":\"6\",\"dlc\":1}",1677175764,2068692,-1,19,-1],[2068441,70,453358,3264,1,0,"{\"att\":{\"is_new\":{\"val\":\"0\"}},\"epos\":\"3\",\"eslot\":\"3\",\"dlc\":1}",1677175764,2068692,-1,19,-1],[2068444,70,454501,3264,1,0,"{\"att\":{\"is_new\":{\"val\":\"0\"}},\"epos\":\"11\",\"eslot\":\"11\",\"dlc\":1}",1677175764,2068692,-1,19,-1],[2068445,70,453268,3264,1,0,"{\"att\":{\"is_new\":{\"val\":\"0\"}},\"epos\":\"8\",\"eslot\":\"8\",\"dlc\":1}",1677175764,2068692,-1,19,-1],[2068446,72,453356,3264,1,0,"{\"att\":{\"is_new\":{\"val\":\"0\"}},\"epos\":\"9\",\"eslot\":\"9\",\"dlc\":1}",1677175764,2068692,-1,19,-1],[2068448,72,453266,3264,1,0,"{\"att\":{\"is_new\":{\"val\":\"0\"}},\"epos\":\"4\",\"eslot\":\"4\",\"dlc\":1}",1677175764,2068692,-1,19,-1],[2068449,70,453267,3264,1,0,"{\"att\":{\"is_new\":{\"val\":\"0\"}},\"epos\":\"5\",\"eslot\":\"5\",\"dlc\":1}",1677175764,2068692,-1,19,-1],[2068696,70,453171,3264,1,0,"{\"epos\":\"0\",\"eslot\":\"0\"}",1677175765,2068692,-1,19,2147483647],[2068697,70,453172,3264,1,0,"{\"epos\":\"1\",\"eslot\":\"1\"}",1677175765,2068692,-1,19,2147483647],[2068703,70,453175,3264,1,0,"{\"epos\":\"2\",\"eslot\":\"2\"}",1677175765,2068692,-1,19,2147483647],[2068731,70,453854,3264,1,0,"{\"epos\":\"14\",\"eslot\":\"14\"}",1677175765,2068692,-1,19,2147483647],[2068735,70,454056,3264,1,0,"{\"epos\":\"13\",\"eslot\":\"13\"}",1677175765,2068692,-1,19,2147483647],[2068736,70,454057,3264,1,0,"{\"epos\":\"12\",\"eslot\":\"12\"}",1677175765,2068692,-1,19,2147483647],[2068737,70,454058,3264,1,0,"{\"epos\":\"17\",\"eslot\":\"17\"}",1677175765,2068692,-1,19,2147483647],[2068738,70,454059,3264,1,0,"{\"epos\":\"16\",\"eslot\":\"16\"}",1677175765,2068692,-1,19,2147483647],[2068739,70,454060,3264,1,0,"{\"epos\":\"15\",\"eslot\":\"15\"}",1677175765,2068692,-1,19,2147483647],[2068742,70,454068,3264,1,0,"{\"epos\":\"19\",\"eslot\":\"19\"}",1677175765,2068692,-1,19,2147483647],[2068744,70,454070,3264,1,0,"{\"epos\":\"21\",\"eslot\":\"21\"}",1677175765,2068692,-1,19,2147483647],[2068747,70,454074,3264,1,0,"{\"epos\":\"10\",\"eslot\":\"10\"}",1677175765,2068692,-1,19,2147483647],[43146560,25,454611,3264,1,0,"{\"epos\":\"20\",\"att\":{\"is_new\":{\"val\":\"0\"}},\"eslot\":\"20\"}",1680029830,2068692,-1,51,-1],[43146561,25,454608,3264,1,0,"{\"epos\":\"7\",\"att\":{\"is_new\":{\"val\":\"0\"}},\"eslot\":\"7\"}",1680029830,2068692,-1,51,-1],[43146562,25,454612,3264,1,0,"{\"epos\":\"18\",\"att\":{\"is_new\":{\"val\":\"0\"}},\"eslot\":\"18\"}",1680029830,2068692,-1,51,-1],[2068443,1,454524,3264,1,0,"{\"epos\":\"0\",\"eslot\":\"0\",\"dlc\":1}",1677175764,2068728,-1,19,-1],[2068447,1,454522,3264,1,0,"{\"epos\":\"10\",\"eslot\":\"10\",\"dlc\":1}",1677175764,2068728,-1,19,-1]]],["132716",[[3389201,58,451845,132716,1,0,"{}",1677176308,2,-1,19,2147483647],[3389236,1,453412,132716,1,0,"{}",1677176308,4,-1,3,2147483647],[3389203,56,451866,132716,1,0,"{}",1677176308,6,-1,19,2147483647],[3389206,59,453182,132716,1,0,"{\"epos\":\"1\",\"eslot\":\"1\"}",1677176308,3389201,-1,19,2147483647],[3389209,59,453179,132716,1,0,"{\"epos\":\"0\",\"eslot\":\"0\"}",1677176308,3389201,-1,19,2147483647],[3389210,59,453181,132716,1,0,"{\"epos\":\"2\",\"eslot\":\"2\"}",1677176308,3389201,-1,19,2147483647],[3389257,59,454103,132716,1,0,"{\"epos\":\"21\",\"eslot\":\"21\"}",1677176308,3389201,-1,19,2147483647],[3389258,59,454102,132716,1,0,"{\"epos\":\"22\",\"eslot\":\"22\"}",1677176308,3389201,-1,19,2147483647],[3389259,59,454101,132716,1,0,"{\"epos\":\"23\",\"eslot\":\"23\"}",1677176308,3389201,-1,19,2147483647],[3389260,59,454089,132716,1,0,"{\"epos\":\"14\",\"eslot\":\"14\"}",1677176308,3389201,-1,19,2147483647 +(I) [13:56:18.345] [000022800]: WorldwideAutomatchService::OnStartComplete - detected successful game start +(I) [13:56:18.345] [000022800]: WorldwideAutomatchService::OnStartComplete - forcing pollcomplete event +(I) [13:56:18.345] [000022800]: GameApp::SetTargetState : new (Game) old (UnloadedGame) +(I) [13:56:18.355] [000022800]: MOD - Setting player [0] race to: [137123] +(I) [13:56:18.356] [000022800]: MOD - Setting player [1] race to: [129494] +(I) [13:56:18.360] [000022800]: ModDllSetup: SetStatsGameUID=23476341 +(I) [13:56:18.360] [000022800]: GAME -- Scenario: data:scenarios\multiplayer\cliff_crossing_2p\cliff_crossing_2p +(I) [13:56:18.360] [000022800]: GAME -- Win Condition Qualified Name: 00000000000000000000000000000000:3318379781 +(I) [13:56:18.360] [000022800]: GAME -- Win Condition Name: VictoryPoint +(I) [13:56:18.360] [000022800]: GAME -- Human Player: 0 ASWZ ScrotalLord 132716 0 germans +(I) [13:56:18.360] [000022800]: GAME -- Human Player: 1 Wolfsindis 3264 1 americans +(I) [13:56:18.360] [000022800]: GameApp::SetState : new (LoadingGame) old (UnloadedGame) +(I) [13:56:18.549] [000022800]: WorldwideAutomatch2Service::OnPollComplete - I am peer 2, ihost:0, islocal:1 +(I) [13:56:18.549] [000022800]: WorldwideAutomatch2Service::OnPollComplete - All players in session and ready, automatch process complete +(I) [13:56:19.008] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4186e3926e9130c616d7439fa6ab76dcc51626e977476244821e0706af0c93c4 +(I) [13:56:19.178] [000022800]: GameObj::StartGameObj - info, network session GUID set to [23476341]. +(I) [13:56:19.179] [000004780]: Loading step: [OnBeginLoad] +(I) [13:56:19.179] [000004780]: Loading step: [Assign Players] +(I) [13:56:19.180] [000004780]: Loading step: [FXReflection] +(I) [13:56:19.180] [000004780]: Loading step: [FXDataContext] +(I) [13:56:19.180] [000004780]: Loading step: [FX Texture Pack] +(I) [13:56:19.181] [000004780]: Loading step: [Run Havok Garbage Collection] +(I) [13:56:19.181] [000004780]: Loading step: [Flush Inventory On Application Exit] +(I) [13:56:19.181] [000004780]: Loading step: [Default World] +(I) [13:56:19.194] [000004780]: Loading step: [FX Command Function] +(I) [13:56:19.194] [000004780]: Loading step: [AnimatorCommandFunction] +(I) [13:56:19.194] [000004780]: Loading step: [MemShrink] +(I) [13:56:19.195] [000004780]: Loading step: [Sync Checking] +(I) [13:56:19.195] [000004780]: Loading step: [Tuning Variant] +(I) [13:56:19.195] [000004780]: Using scenario tuning variant [default] +(I) [13:56:19.195] [000004780]: Loading step: [Mod Packs] +(I) [13:56:19.195] [000004780]: Loading step: [SimVis System] +(I) [13:56:19.195] [000004780]: Loading step: [DefaultWorld] +(I) [13:56:19.195] [000004780]: Loading step: [Visual Physics ME] +(I) [13:56:19.195] [000004780]: Loading step: [Deferred Decal Manager] +(I) [13:56:19.195] [000004780]: Loading step: [FogVolumeManager] +(I) [13:56:19.195] [000004780]: Loading step: [Vehicle Physics Function] +(I) [13:56:19.195] [000004780]: Loading step: [Unit Occlusion Function] +(I) [13:56:19.195] [000004780]: Loading step: [Splat Function] +(I) [13:56:19.195] [000004780]: Loading step: [Grass Function] +(I) [13:56:19.195] [000004780]: Loading step: [Object Alpha Factor Function] +(I) [13:56:19.195] [000004780]: Loading step: [Renderable Managers] +(I) [13:56:19.195] [000004780]: Loading step: [Setup Skins] +(I) [13:56:19.197] [000004780]: Loading step: [AnimEventSetup] +(I) [13:56:19.198] [000004780]: Loading step: [Session Precache] +(I) [13:56:19.284] [000004780]: Loading step: [Precache core resources] +(I) [13:56:19.284] [000004780]: Loading step: [Precache EBPs] +(I) [13:56:19.459] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:56:19.459] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:56:19.459] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:56:19.459] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:56:19.459] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:56:19.459] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:56:19.459] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:56:19.459] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:56:19.459] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:56:19.459] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:56:19.459] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:56:19.459] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:56:19.459] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:56:19.459] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:56:19.459] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:56:19.459] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:56:19.459] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:56:19.459] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:56:19.459] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:56:19.459] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:56:19.459] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:56:19.459] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:56:19.459] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:56:19.459] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:56:19.459] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:56:19.459] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:56:19.459] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [13:56:19.572] [000004780]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [13:56:19.572] [000004780]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [13:56:19.572] [000004780]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [13:56:19.572] [000004780]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [13:56:20.273] [000004780]: Loading step: [Precache State Tree references] +(I) [13:56:20.311] [000004780]: Loading step: [Load Actions] +(I) [13:56:20.313] [000004780]: Loading step: [Load Resources from Precache] +(I) [13:56:25.379] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [1260691210]. +(I) [13:56:27.253] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [1260691210]. +(I) [13:56:27.953] [000004780]: Loading step: [GEWorld] +(I) [13:56:27.953] [000004780]: GAME - InitializeGEWorld +(I) [13:56:28.119] [000004780]: Re-winding a compressed stream for file 'data:scenarios\multiplayer\cliff_crossing_2p\cliff_crossing_2p.scenario'. Expensive operation +(I) [13:56:28.410] [000004780]: Regenerating ImpassMap data... +(I) [13:56:28.529] [000004780]: Regenerating SimTerrainCoverMap data... +(I) [13:56:28.547] [000004780]: SimTerrainCoverMap generation took 0.017619 seconds. +(I) [13:56:28.723] [000004780]: Pathfinding::Regenerate()... +(I) [13:56:28.824] [000004780]: Pathfinding::Regenerate() Done. +(I) [13:56:29.056] [000004780]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:56:29.056] [000004780]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:56:29.056] [000004780]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:56:29.056] [000004780]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:56:29.056] [000004780]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:56:29.056] [000004780]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:56:29.056] [000004780]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:56:29.056] [000004780]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:56:29.056] [000004780]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:56:29.056] [000004780]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:56:29.056] [000004780]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:56:29.056] [000004780]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:56:29.056] [000004780]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:56:29.056] [000004780]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:56:29.056] [000004780]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:56:29.056] [000004780]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:56:29.056] [000004780]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:56:29.056] [000004780]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:56:29.056] [000004780]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:56:29.056] [000004780]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:56:29.056] [000004780]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:56:29.056] [000004780]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:56:29.056] [000004780]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:56:29.056] [000004780]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:56:29.056] [000004780]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:56:29.056] [000004780]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:56:29.056] [000004780]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:56:29.056] [000004780]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:56:29.056] [000004780]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:56:29.056] [000004780]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:56:29.056] [000004780]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:56:29.056] [000004780]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [13:56:29.088] [000004780]: GAME - CreateGEWorld in 1134 ms +(I) [13:56:29.088] [000004780]: SIM -- Setting SyncErrorChecking level to Low +(I) [13:56:29.088] [000004780]: Loading step: [Load Resources from GEWorld] +(I) [13:56:29.118] [000004780]: Loading step: [Sound Banks] +(I) [13:56:29.118] [000004780]: Loading step: [Session] +(I) [13:56:29.118] [000004780]: GAME - SessionSetup +(I) [13:56:29.118] [000004780]: GAME - SessionSetup finished in 0 ms +(I) [13:56:29.118] [000004780]: Loading step: [Player Setup] +(I) [13:56:29.119] [000004780]: GAME -- Recording game +(I) [13:56:29.119] [000004780]: Loading step: [Scenario Lua System] +(I) [13:56:29.143] [000004780]: Loading step: [Team Colour Init] +(I) [13:56:29.143] [000004780]: Loading step: [Race Precaching Event Listener Registration] +(I) [13:56:29.143] [000004780]: Loading step: [Simulation] +(I) [13:56:29.179] [000004780]: LoadWinCondition: - [winconditions\mode_victorypoint] succeeded. +(I) [13:56:29.250] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [1260691210]. +(I) [13:56:29.379] [000004780]: Player [] killed on game tick [0] due to [unused player] +(I) [13:56:29.380] [000004780]: Player [] killed on game tick [0] due to [unused player] +(I) [13:56:29.380] [000004780]: Player [] killed on game tick [0] due to [unused player] +(I) [13:56:29.380] [000004780]: Player [] killed on game tick [0] due to [unused player] +(I) [13:56:29.380] [000004780]: Player [] killed on game tick [0] due to [unused player] +(I) [13:56:29.380] [000004780]: Player [] killed on game tick [0] due to [unused player] +(I) [13:56:29.380] [000004780]: Player [] killed on game tick [0] due to [unused player] +(I) [13:56:29.380] [000004780]: Player [] killed on game tick [0] due to [unused player] +(I) [13:56:29.380] [000004780]: Player [] killed on game tick [0] due to [unused player] +(I) [13:56:29.380] [000004780]: Player [] killed on game tick [0] due to [unused player] +(I) [13:56:29.380] [000004780]: Player [] killed on game tick [0] due to [unused player] +(I) [13:56:29.380] [000004780]: Player [] killed on game tick [0] due to [unused player] +(I) [13:56:29.380] [000004780]: Player [] killed on game tick [0] due to [unused player] +(I) [13:56:29.380] [000004780]: Player [] killed on game tick [0] due to [unused player] +(I) [13:56:29.633] [000004780]: Loading step: [GameUICore System] +(I) [13:56:29.647] [000004780]: Loading step: [UI System] +(I) [13:56:29.648] [000004780]: Loading step: [LUA] +(I) [13:56:29.648] [000004780]: Loading step: [Game Event Listener Registration] +(I) [13:56:29.648] [000004780]: Loading step: [CPU AI] +(I) [13:56:29.659] [000004780]: Loading step: [Scar Init] +(I) [13:56:29.659] [000004780]: Loading step: [FX System] +(I) [13:56:29.659] [000004780]: Loading step: [Cheat Menu] +(I) [13:56:29.663] [000004780]: Loading step: [Scar Start] +(I) [13:56:29.664] [000004780]: Loading step: [Load resources] +(I) [13:56:29.665] [000004780]: Loading step: [PreDisplay] +(I) [13:56:29.665] [000004780]: Loading step: [Free Loading Data] +(I) [13:56:29.665] [000004780]: PreloadResources took 0ms. +(I) [13:56:29.665] [000004780]: Loading step: [MemShrink] +(I) [13:56:29.666] [000004780]: Loading step: [Flush Inventory] +(I) [13:56:29.748] [000004780]: Loading step: [Resolve Impasse Blockers] +(I) [13:56:29.748] [000004780]: Loading step: [Convert OOB Static Entities to Visual Only Objects] +(I) [13:56:29.748] [000004780]: Loading step: [DefaultWorld Begin Play] +(I) [13:56:29.892] [000004780]: Loading step: [Preparing game] +(I) [13:56:29.892] [000004780]: Loading step: [Start Renderer] +(I) [13:56:29.892] [000004780]: Loading step: [FrontEnd simulation initialization] +(I) [13:56:29.892] [000004780]: Loading step: [WPFGFrontEnd loading] +(I) [13:56:29.908] [000004780]: Loading step: [OnEndLoad] +(I) [13:56:30.260] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:2]" finished loading with checksum [1260691210]. +(I) [13:56:30.621] [000022800]: PerformanceRecorder::StartRecording for game size 2 +(I) [13:56:30.621] [000022800]: GAME -- Starting mission: data:scenarios\multiplayer\cliff_crossing_2p\cliff_crossing_2p +(I) [13:56:30.621] [000022800]: MEM -- available page 6187 mb, total page 40074 mb +(I) [13:56:30.639] [000022800]: GameApp::SetState : new (Game) old (LoadingGame) +(I) [13:56:30.639] [000022800]: GameApp::SetTargetState : new (Uninitialized) old (Game) +(I) [13:56:34.537] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3924b45a0d2db3274bb66028c8a78c8c558d970df8b3c374a800e2c293acf1da +(I) [13:56:40.006] [000022800]: Local user framerate is [0.000000] +(I) [13:56:40.006] [000022800]: Local user MinDelay=[73ms], MaxDelay=[125ms], AvgDelay=[111ms], minRTT[111ms], maxRTT[244ms], avgRTT[168ms] +(I) [13:56:54.010] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=63992c7f84d4c8115bffb9bb310b71533b24352bcddbd8cb2f9cea265ad605b0 +(I) [13:57:01.011] [000022800]: Local user framerate is [121.525688] +(I) [13:57:01.011] [000022800]: Local user MinDelay=[68ms], MaxDelay=[126ms], AvgDelay=[108ms], minRTT[111ms], maxRTT[248ms], avgRTT[150ms] +(I) [13:57:04.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=96/24, mdat=265/530, voip=0/0, rchk=0/0, nudg=5/8, Thdr=0/0, Peer=17/32, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=17/16, lb_p=27/7, lb_c=0/0, cast=0/0, cdat=76/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:57:04.571] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=88924758728a5863c73804ecb0bbcf40acba997edf1355d518cb7ecf72b723b3 +(I) [13:57:08.002] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=20/0, mdat=32/64, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=2/1, lb_c=0/0, cast=0/0, cdat=15/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:57:14.309] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b763de396f78566be70cd12412502ca5318ad85d7d78fae7c60d0fd716fcebe5 +(I) [13:57:22.008] [000022800]: Local user framerate is [116.232567] +(I) [13:57:22.008] [000022800]: Local user MinDelay=[68ms], MaxDelay=[126ms], AvgDelay=[104ms], minRTT[110ms], maxRTT[248ms], avgRTT[148ms] +(I) [13:57:34.014] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=81136322a8994d41b8d156bf744d6ea18398980530a01d85cedc63ed97e3c0ec +(I) [13:57:43.019] [000022800]: Local user framerate is [115.694206] +(I) [13:57:43.019] [000022800]: Local user MinDelay=[77ms], MaxDelay=[104ms], AvgDelay=[89ms], minRTT[121ms], maxRTT[231ms], avgRTT[154ms] +(I) [13:57:43.035] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f200413ce53c0bd12d6323a37c5b8e64d20f762469d9bb08ff0212875842b4aa +(I) [13:57:59.983] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f9db36ebf5f38e31003333e7993ed2f1d11a65bd11f465ef78f1f8a89c6e714c +(I) [13:58:04.011] [000022800]: Local user framerate is [113.194336] +(I) [13:58:04.011] [000022800]: Local user MinDelay=[68ms], MaxDelay=[104ms], AvgDelay=[84ms], minRTT[112ms], maxRTT[237ms], avgRTT[153ms] +(I) [13:58:05.005] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=210/0, mdat=456/912, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=28/7, lb_c=0/0, cast=0/0, cdat=183/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:58:09.006] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=20/0, mdat=32/64, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=3/1, lb_c=0/0, cast=0/0, cdat=18/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:58:19.010] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2370786090a83cebea1afdd0333cab1f558980a9a56f98bce8a690defcad18e6 +(I) [13:58:25.016] [000022800]: Local user framerate is [111.383293] +(I) [13:58:25.016] [000022800]: Local user MinDelay=[60ms], MaxDelay=[104ms], AvgDelay=[80ms], minRTT[112ms], maxRTT[237ms], avgRTT[156ms] +(I) [13:58:39.610] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=88b377305521dff91e5cc9a6a002f0fbcc8a0ff65632d05276ca02ee3545fcc5 +(I) [13:58:43.662] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d1fce9e75732a349cd0fcef9de0519596606836fd7cd889c60bddf8413764d37 +(I) [13:58:46.014] [000022800]: Local user framerate is [117.626465] +(I) [13:58:46.014] [000022800]: Local user MinDelay=[50ms], MaxDelay=[77ms], AvgDelay=[65ms], minRTT[123ms], maxRTT[226ms], avgRTT[170ms] +(I) [13:58:56.310] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=11816403d76c68497f43557af81191f9e153539125e20617091eb0b3e3f1bc85 +(I) [13:59:06.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=206/0, mdat=456/912, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=29/8, lb_c=0/0, cast=0/0, cdat=185/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:59:07.005] [000022800]: Local user framerate is [113.271675] +(I) [13:59:07.005] [000022800]: Local user MinDelay=[43ms], MaxDelay=[78ms], AvgDelay=[61ms], minRTT[119ms], maxRTT[235ms], avgRTT[173ms] +(I) [13:59:10.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=7/0, mdat=32/64, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=1/0, lb_c=0/0, cast=0/0, cdat=7/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [13:59:16.011] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0e420a20a9674045baf810d0c48b07727df93c0ad53ccbf3b9a926a3eaf9f5ba +(I) [13:59:28.006] [000022800]: Local user framerate is [110.433434] +(I) [13:59:28.006] [000022800]: Local user MinDelay=[43ms], MaxDelay=[78ms], AvgDelay=[58ms], minRTT[119ms], maxRTT[236ms], avgRTT[175ms] +(I) [13:59:29.603] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8e9f116ac699982b02bf96cdc171a04c86a46533ad2b38f01298440eee2317a2 +(I) [13:59:40.703] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2971e3bb104969f354f928d8e1629668d0b447ea6e8327a08217ac19d82bdcbc +(I) [13:59:43.689] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7da460f9d2bbead0ed9044fe30df698092a5cd1dd38625cdcdc716e5ee21cf45 +(I) [13:59:46.936] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=098e4b6d04d72eea9f9c17f8ea7df352c7cfd3736d73660e0b1db86b9dd5a101 +(I) [13:59:49.002] [000022800]: Local user framerate is [108.083786] +(I) [13:59:49.002] [000022800]: Local user MinDelay=[43ms], MaxDelay=[65ms], AvgDelay=[53ms], minRTT[133ms], maxRTT[270ms], avgRTT[184ms] +(I) [13:59:51.066] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d5854073ed155d850c074cc27a4ccb2868de788ad88424f3b2d76a732adb032c +(I) [14:00:02.576] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=25976ff5fd708358d12bc66461f27f3c17390c5e14448b3058105cc41b6afa95 +(I) [14:00:07.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=227/0, mdat=456/912, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=29/8, lb_c=0/0, cast=0/0, cdat=201/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:00:10.006] [000022800]: Local user framerate is [111.027786] +(I) [14:00:10.006] [000022800]: Local user MinDelay=[41ms], MaxDelay=[65ms], AvgDelay=[52ms], minRTT[113ms], maxRTT[311ms], avgRTT[179ms] +(I) [14:00:11.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=22/0, mdat=32/64, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=1/0, lb_c=0/0, cast=0/0, cdat=19/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:00:22.012] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=da807b285fa718bf03423b5c9e81569527643490c8b5708845618c501094fdcc +(I) [14:00:29.072] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ed274ad14fd29f9e9d608024f22390125d83c66e4378f6cd22cd0929da4ee0e3 +(I) [14:00:31.003] [000022800]: Local user framerate is [107.767670] +(I) [14:00:31.003] [000022800]: Local user MinDelay=[47ms], MaxDelay=[58ms], AvgDelay=[52ms], minRTT[169ms], maxRTT[180ms], avgRTT[173ms] +(I) [14:00:37.301] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6447c07963e398deb60ec334d4081a55f9a699bae7b1701b3dd3b9d87450c155 +(I) [14:00:46.368] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=30e1e3b05e649e5d5c0a5fc793eb1f40abed7ad0cc0f6750b44a01fc0b95f5d0 +(I) [14:00:52.001] [000022800]: Local user framerate is [101.729645] +(I) [14:00:52.001] [000022800]: Local user MinDelay=[43ms], MaxDelay=[71ms], AvgDelay=[58ms], minRTT[115ms], maxRTT[232ms], avgRTT[172ms] +(I) [14:01:06.013] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=af451da19fbbb8d5bd9434d104210c7670366f092ad6a5a9adab42f0cc073be9 +(I) [14:01:08.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=213/0, mdat=455/910, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=29/8, lb_c=0/0, cast=0/0, cdat=192/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:01:12.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=10/0, mdat=32/64, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=2/0, lb_c=0/0, cast=0/0, cdat=9/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:01:13.010] [000022800]: Local user framerate is [108.928207] +(I) [14:01:13.010] [000022800]: Local user MinDelay=[40ms], MaxDelay=[71ms], AvgDelay=[56ms], minRTT[115ms], maxRTT[232ms], avgRTT[174ms] +(I) [14:01:19.755] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7c0d055a3e238dc5bb73e985ee57c41360a5107ad31df7594e1170b6994c8bf2 +(I) [14:01:29.689] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=23ce57447a91c68e71409142ef159c1b4879c55c98979150869b3728e07e2c3f +(I) [14:01:33.248] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=264707e311b5e833fe30f6a4ca556930af61e184c95b801c0ca24e8e4343a2ec +(I) [14:01:34.002] [000022800]: Local user framerate is [106.750000] +(I) [14:01:34.002] [000022800]: Local user MinDelay=[41ms], MaxDelay=[63ms], AvgDelay=[49ms], minRTT[136ms], maxRTT[229ms], avgRTT[181ms] +(I) [14:01:34.750] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=46829661a69b29b18a896df7f8b5e44dc9122cd2632b313da3deae7ff84a8dc2 +(I) [14:01:54.015] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=652ad9118c62eb86b14e1d358d339fb64e881c0c74a93e86b99af13ced77e2e2 +(I) [14:01:55.004] [000022800]: Local user framerate is [105.818253] +(I) [14:01:55.004] [000022800]: Local user MinDelay=[31ms], MaxDelay=[66ms], AvgDelay=[50ms], minRTT[112ms], maxRTT[235ms], avgRTT[181ms] +(I) [14:02:09.010] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=281/0, mdat=456/912, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=29/8, lb_c=0/0, cast=0/0, cdat=244/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:02:12.809] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7cd6ef363b7e6e369aa0a0f248572e67ea3978b384437e234db3058953804976 +(I) [14:02:13.004] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=20/0, mdat=32/64, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=1/0, lb_c=0/0, cast=0/0, cdat=18/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:02:16.008] [000022800]: Local user framerate is [105.463081] +(I) [14:02:16.008] [000022800]: Local user MinDelay=[31ms], MaxDelay=[67ms], AvgDelay=[50ms], minRTT[111ms], maxRTT[235ms], avgRTT[179ms] +(I) [14:02:27.616] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=51c1fcb18c0e62dcfebb0effaa871d0eac277ecede38bd920c809f51e3b02bd7 +(I) [14:02:33.270] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c0b4bba7e553015ce5010f0bd692858b4e85b3efa1ebcb86a9f24c39b4b21900 +(I) [14:02:37.022] [000022800]: Local user framerate is [107.594612] +(I) [14:02:37.022] [000022800]: Local user MinDelay=[37ms], MaxDelay=[62ms], AvgDelay=[51ms], minRTT[120ms], maxRTT[225ms], avgRTT[177ms] +(I) [14:02:39.264] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4c367d6fa22f53adf7fff1d7f4f9724f9d61cd9ed77dbc39810ac1ad749f077f +(I) [14:02:50.300] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=885820e97fcdf8601b4bbb733cef29b9b47003f2f12ad7d8d622ce2b27b2b76c +(I) [14:02:58.002] [000022800]: Local user framerate is [103.689629] +(I) [14:02:58.002] [000022800]: Local user MinDelay=[28ms], MaxDelay=[68ms], AvgDelay=[54ms], minRTT[117ms], maxRTT[232ms], avgRTT[177ms] +(I) [14:03:00.616] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8d8afdef15d7a96334f672bc3e94cca4a3923be1b197c1d5492fd5f42c29fc76 +(I) [14:03:08.810] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f3db0a29122635bdd42701255612d50b5dc3daf2409bd85aff05f97a62208327 +(I) [14:03:10.004] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=248/0, mdat=456/912, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=29/8, lb_c=0/0, cast=0/0, cdat=213/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:03:11.194] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d0ad822b86646458a453e597b9b493391eda1154741fb521b4117023ce8aa51a +(I) [14:03:14.003] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=14/0, mdat=32/64, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=1/0, lb_c=0/0, cast=0/0, cdat=12/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:03:15.189] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=33a413b313f3684ef763ce52b13612a70b3fdd1fd5ba4f6b2d4a584e9e1dafde +(I) [14:03:17.066] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fff966caec5b8b4ded9f5f328b58684cba15476283f38e04662004fee5ea446c +(I) [14:03:18.187] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b64f9607552e8bebc98b8a8294c41113402173ff0a0e519e18991619f349a44f +(I) [14:03:19.000] [000022800]: Local user framerate is [105.762970] +(I) [14:03:19.000] [000022800]: Local user MinDelay=[28ms], MaxDelay=[68ms], AvgDelay=[53ms], minRTT[112ms], maxRTT[262ms], avgRTT[177ms] +(I) [14:03:19.600] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3931e84b3c4f4337c93593e15f5fbe95e9676d937550097450eca09d70ce2a97 +(I) [14:03:25.673] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=609f1b3c8a0f054d78aeb87e6ad6839652cb4991d6b8493b9a153ae30881d062 +(I) [14:03:30.093] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d19b160dd373cd98fef08c3d3ec442066eecfbe8f145565b807464ee24c97740 +(I) [14:03:33.324] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b867838856d31144fccca5be15670ac7a4630eb92def2394d9d2e168a0ecb8d0 +(I) [14:03:34.700] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2d781359292432e531166b83b8d4fae0e37f6fc8d7b17b4e223b1607f003760b +(I) [14:03:40.002] [000022800]: Local user framerate is [103.053619] +(I) [14:03:40.002] [000022800]: Local user MinDelay=[44ms], MaxDelay=[68ms], AvgDelay=[55ms], minRTT[121ms], maxRTT[210ms], avgRTT[174ms] +(I) [14:03:48.516] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c8cfec6c75e9a1d0fbaf2a94699c226cda8ecccfcddabb30d5f03e3faf67bc2c +(I) [14:04:01.006] [000022800]: Local user framerate is [102.500000] +(I) [14:04:01.006] [000022800]: Local user MinDelay=[43ms], MaxDelay=[82ms], AvgDelay=[56ms], minRTT[117ms], maxRTT[309ms], avgRTT[176ms] +(I) [14:04:05.548] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e347b7ed33875ab4b5b375077cc57aa548cbf616667da248903e752d168d1d81 +(I) [14:04:11.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=215/0, mdat=456/912, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=29/8, lb_c=0/0, cast=0/0, cdat=195/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:04:12.760] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=abdb98e1b1e8b9c13900cb53e8320e04f030593d271691f50dfc0ae2dcabe20a +(I) [14:04:15.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=20/0, mdat=32/64, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=2/0, lb_c=0/0, cast=0/0, cdat=18/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:04:22.006] [000022800]: Local user framerate is [102.414146] +(I) [14:04:22.006] [000022800]: Local user MinDelay=[43ms], MaxDelay=[82ms], AvgDelay=[57ms], minRTT[113ms], maxRTT[309ms], avgRTT[175ms] +(I) [14:04:32.010] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3ff48149ca106b007a0ff0eaafcdef2565d93b756f70e0a2dcc3e9381ac6369e +(I) [14:04:41.396] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a172a863733f6e19d529d0b6977214514ffb4b76ed8aa3a3425b968f4178c34e +(I) [14:04:43.004] [000022800]: Local user framerate is [103.939598] +(I) [14:04:43.004] [000022800]: Local user MinDelay=[46ms], MaxDelay=[71ms], AvgDelay=[59ms], minRTT[115ms], maxRTT[240ms], avgRTT[174ms] +(I) [14:04:47.337] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9e633d8b8c79418c25fc10475448fa1a166d4d511109d8a983eb496b900eab16 +(I) [14:04:54.005] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c23e6f0fbc87b4bb04409f91814f40341d3bca56eb7e925648d7ca7e30c813c7 +(I) [14:05:01.007] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cd641997da1a7df5d74a4570c2c838966565cd91d7cfd9b7720f7f6aecb486b7 +(I) [14:05:04.007] [000022800]: Local user framerate is [102.394875] +(I) [14:05:04.007] [000022800]: Local user MinDelay=[38ms], MaxDelay=[71ms], AvgDelay=[58ms], minRTT[115ms], maxRTT[241ms], avgRTT[174ms] +(I) [14:05:11.605] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=78c804565028c279e2717ddc507e45654feeb3676073ca05a80d35516d8aa8a7 +(I) [14:05:12.009] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=212/0, mdat=456/912, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=29/8, lb_c=0/0, cast=0/0, cdat=190/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:05:16.008] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=12/0, mdat=31/62, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=1/0, lb_c=0/0, cast=0/0, cdat=12/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:05:16.727] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0a4839e803fdd69b10f74ac4ecf2cee6e62bc6316206d9ef7c1df5854cb5c58c +(I) [14:05:25.005] [000022800]: Local user framerate is [104.258293] +(I) [14:05:25.005] [000022800]: Local user MinDelay=[38ms], MaxDelay=[71ms], AvgDelay=[58ms], minRTT[109ms], maxRTT[241ms], avgRTT[173ms] +(I) [14:05:27.520] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=70dc27a3ef6c03a2c8e1b07c861ab33c7eb8a5c95d36eafec0a11ab9a3f54554 +(I) [14:05:37.360] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=afe199b796830f91de35ebeae4726a1579f232edfdb7f840e06df5d37f5e5474 +(I) [14:05:46.005] [000022800]: Local user framerate is [99.565140] +(I) [14:05:46.005] [000022800]: Local user MinDelay=[47ms], MaxDelay=[74ms], AvgDelay=[61ms], minRTT[133ms], maxRTT[235ms], avgRTT[172ms] +(I) [14:05:50.879] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=19a5019d1e46700af7bf8f1d61b20fbf8e9000380a8743fb9bfb6a527e08e3c1 +(I) [14:05:52.843] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4fed0171b2f2f1627f9f1e7921b1f54c7f1547b294f09de0ee85f0b829857099 +(I) [14:05:54.892] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=bb5a907524678388b53ca01a9b353c0e6f1329322cf33073e356dbf32f4259b1 +(I) [14:05:57.248] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e15e5729e7bd0d0e5d47356dcbfcba750d46257342cd3660c1aa774de0ac00df +(I) [14:06:00.545] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=baac3f546693790947db6e4d94eeb33d003b6f4e93834c7c8b92f659e0f05be3 +(I) [14:06:02.650] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7a2b63cdc495c4c53e8a08878838afb6e8843f825d8c4b1e1c82dfb59a53b003 +(I) [14:06:04.459] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6a2ad087c1e083eb07d372e093d4878dd64232eb05ccdd701598d48a0bd31ca8 +(I) [14:06:07.000] [000022800]: Local user framerate is [100.500000] +(I) [14:06:07.000] [000022800]: Local user MinDelay=[35ms], MaxDelay=[74ms], AvgDelay=[58ms], minRTT[117ms], maxRTT[235ms], avgRTT[173ms] +(I) [14:06:12.649] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4646ef382026e85241d1a514b39b0b3e0b31886fa0e71762a1e579411ee6c98e +(I) [14:06:13.009] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=233/0, mdat=456/912, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=29/8, lb_c=0/0, cast=0/0, cdat=199/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:06:14.026] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d6e77cb3b20f6e7700ecda855e0aa9153dec21684f576767250cb2efd3de358b +(I) [14:06:16.103] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0a1f53d326b20dcba6daabcbb06f027ee2902e9a965989fdc496e17fe29e4568 +(I) [14:06:17.005] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=19/0, mdat=32/64, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=1/0, lb_c=0/0, cast=0/0, cdat=16/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:06:17.898] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ab4f8fcfd84d3f31b7182ac5f0676eaaa782682446c905253308f28bcc1f1e02 +(I) [14:06:19.648] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d6b0ab4b8fd601624c32156c63a2b399aa1a8cd5b4a885fbe089ffd607d797aa +(I) [14:06:21.558] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1e23d13da854a7d546f91bc5016fcbe9d2e8a61541c4b2d7b575b52cabfca91c +(I) [14:06:27.898] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=dab100db5a1cf785a0065c1b813bdb3f198ffd8b5c83da05b3d2b26fd1f638a6 +(I) [14:06:28.010] [000022800]: Local user framerate is [97.036926] +(I) [14:06:28.010] [000022800]: Local user MinDelay=[35ms], MaxDelay=[78ms], AvgDelay=[58ms], minRTT[110ms], maxRTT[250ms], avgRTT[175ms] +(I) [14:06:30.159] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c30819ada85b18d1158377af68b4ba108d43e4b7ced8694fef2297c457f4537f +(I) [14:06:31.538] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=37537477d2178a6b8e009ab84637d363ef2263faaab8cee2c26be76baea0b0f1 +(I) [14:06:33.657] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c9ac7fe39c6c3a7d2acf4cbb73886bb199ff6051b48f3101b2ad19a1bfc487f8 +(I) [14:06:40.341] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=81e70767adb5d7c0cc1ea5a58141db1355ad1ebde3e8cffe3d8cd906d8fa5795 +(I) [14:06:45.713] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7f85a0171ae8291fe044f74d02980460739e863a62e03f9d8f200eb5146ba114 +(I) [14:06:49.011] [000022800]: Local user framerate is [97.111153] +(I) [14:06:49.011] [000022800]: Local user MinDelay=[45ms], MaxDelay=[73ms], AvgDelay=[59ms], minRTT[112ms], maxRTT[242ms], avgRTT[171ms] +(I) [14:06:56.555] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a369c9b40c4cc3b8d3e1c8f2f2943f2c47f2442ba301232ebb80943103bcf4a6 +(I) [14:07:00.832] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4876a6314b457420e391c38397ea839d863a901a0616587d326738d38b033151 +(I) [14:07:01.923] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9c76ae5f19f905bbfbd944ca931ff4b86a310ca47727d80b26eed6df6bef47d3 +(I) [14:07:03.171] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3a06f1516d03e00e10b699a5ae45fd8eaf458c3543faaef177895f84f568b901 +(I) [14:07:05.287] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9b0c2eac3c35533269222bf045bf60424add4087aaf0ad21eec2e0faad6ff377 +(I) [14:07:07.541] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=08d530d4b19cee5ea159b8fc6f8ee9475d214c5f24d77ce25c7bd80b70d73741 +(I) [14:07:10.006] [000022800]: Local user framerate is [99.650177] +(I) [14:07:10.006] [000022800]: Local user MinDelay=[45ms], MaxDelay=[73ms], AvgDelay=[58ms], minRTT[112ms], maxRTT[242ms], avgRTT[172ms] +(I) [14:07:11.804] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0a63b1b3832fcd00537372a198059077094182609367942237973862a1994900 +(I) [14:07:12.879] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=dae8aa8af2f857e1aa952c6f6f09e64463cfbe64eb7ad8e196df76de81f4ff93 +(I) [14:07:14.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=259/0, mdat=456/912, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=29/8, lb_c=0/0, cast=0/0, cdat=225/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:07:14.034] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ef19f75317f6889a88c4aaa785795b112494c2f03730b9fdea6484775ac131c4 +(I) [14:07:15.934] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8c0cef683a3ce892834def905205f45ad01c7436ea9284b233715fbe7f9779d1 +(I) [14:07:18.004] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=22/0, mdat=32/64, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=1/0, lb_c=0/0, cast=0/0, cdat=18/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:07:21.275] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=83c958e260f707533fcd10ff0be40df853bb8999d2b45a1aabcd8d4a386d6afa +(I) [14:07:29.440] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=def21aef6035972ef24565b61861f4eab5bcab8652eb569205d7cd8f4a3033f6 +(I) [14:07:31.003] [000022800]: Local user framerate is [97.531715] +(I) [14:07:31.003] [000022800]: Local user MinDelay=[52ms], MaxDelay=[58ms], AvgDelay=[55ms], minRTT[177ms], maxRTT[177ms], avgRTT[177ms] +(I) [14:07:43.156] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fbd5b18f9a1ce2e6203d3d76fece6770556757571c496b1e017632124c8546b5 +(I) [14:07:52.003] [000022800]: Local user framerate is [100.694962] +(I) [14:07:52.003] [000022800]: Local user MinDelay=[45ms], MaxDelay=[73ms], AvgDelay=[57ms], minRTT[123ms], maxRTT[294ms], avgRTT[173ms] +(I) [14:07:55.588] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f910bcd5eef056c5e9e1076ce6b7ea0cd02f6a8db731453973ac8827789c36e2 +(E) [14:07:56.363] [000022800]: TelemetryRow::addString : Key: (ability_name), Value (35) is larger than Column (32) +(I) [14:08:08.072] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f89f3227b997aa60be0db4a6caa02b0ea4b4b009896e61261849f19103986680 +(I) [14:08:13.002] [000022800]: Local user framerate is [96.321098] +(I) [14:08:13.002] [000022800]: Local user MinDelay=[45ms], MaxDelay=[75ms], AvgDelay=[59ms], minRTT[123ms], maxRTT[294ms], avgRTT[172ms] +(I) [14:08:14.828] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=691c6f98f39f4cdc1f47d9b4b4d6ee91136a8c705c1c7396b18e3979de778692 +(I) [14:08:15.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=241/0, mdat=456/912, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=29/8, lb_c=0/0, cast=0/0, cdat=205/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:08:19.010] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=20/0, mdat=32/64, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=3/1, lb_c=0/0, cast=0/0, cdat=15/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:08:21.728] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5773698bdb7b84cc6042df2185bd3dcb94c259b5bf1b0d4766a391840c7e486a +(I) [14:08:27.206] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7ed56dff39d7e1cc884d616e71396fc90fa5b8b2daca5e4ac00bdeb6bb356e9c +(I) [14:08:29.451] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=223671bb5496d73a8c32551107578a173e72088d4ddaa78a3220c07e9a3a757e +(I) [14:08:30.956] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4b838933582d1c7c63d7acf10ab3560ac364be3f2a44ff4c87b42a041f1a816c +(I) [14:08:33.215] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1a07f3a33d462aac5981fb0496d13e1608f36b768676c1c5162dbf80baa4b24b +(I) [14:08:34.004] [000022800]: Local user framerate is [103.099998] +(I) [14:08:34.004] [000022800]: Local user MinDelay=[57ms], MaxDelay=[74ms], AvgDelay=[64ms], minRTT[162ms], maxRTT[230ms], avgRTT[176ms] +(I) [14:08:38.728] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=662bb4044fa7c78776e00a19ac896379e2b0bc5a02187674af708113f7241be3 +(I) [14:08:53.089] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0c4d503ec29cada8459a5ccac4a3b7f3b07142201e4b84ba82c2be251e402d5e +(I) [14:08:54.963] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=241424dda8f3c310a108bdf63e803e56c336b77fd1b10b76602cf03580612b8e +(I) [14:08:55.000] [000022800]: Local user framerate is [103.169044] +(I) [14:08:55.000] [000022800]: Local user MinDelay=[53ms], MaxDelay=[78ms], AvgDelay=[64ms], minRTT[112ms], maxRTT[233ms], avgRTT[167ms] +(I) [14:08:57.211] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=02ac78cade4d7ed12d4403d091b7b7c6b51cd7ce3cfcab593f446098e146f74b +(I) [14:08:59.458] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a53392393f95ae29c281634729392e920205c0bda0ac30e4691b4795f8ea32cf +(I) [14:09:01.709] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3ff4c7d87ec48a6f64a15b3c701f1da13c5f6966d16b538c636020a3689353db +(I) [14:09:15.513] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9c5c4f89afc43f0118aca135a291efc654e762c39f7cfcfd088c84040c0bcab1 +(I) [14:09:16.001] [000022800]: Local user framerate is [105.652451] +(I) [14:09:16.002] [000022800]: Local user MinDelay=[47ms], MaxDelay=[78ms], AvgDelay=[63ms], minRTT[110ms], maxRTT[301ms], avgRTT[169ms] +(I) [14:09:16.006] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=205/0, mdat=456/912, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=28/7, lb_c=0/0, cast=0/0, cdat=184/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:09:20.002] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=22/0, mdat=32/64, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=2/1, lb_c=0/0, cast=0/0, cdat=19/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:09:25.833] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c9f49360e43e46c8feef26233eaf24dce567f79b2b092fea57945b0d0f22951a +(I) [14:09:34.132] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0c48803796b70bcbebd173a5ad080e5aefdc503e602b8ac5908e6f0a89ee5838 +(E) [14:09:36.008] [000022800]: TelemetryRow::addString : Key: (ability_name), Value (35) is larger than Column (32) +(I) [14:09:37.008] [000022800]: Local user framerate is [101.639832] +(I) [14:09:37.008] [000022800]: Local user MinDelay=[41ms], MaxDelay=[69ms], AvgDelay=[54ms], minRTT[110ms], maxRTT[229ms], avgRTT[168ms] +(I) [14:09:37.695] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3dbb5e0650f81c9ef8c67eb9b76b4a842ca92bde4e6f88247555eb1ed1948119 +(I) [14:09:40.236] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ce6752fc8022398f3c88a95cd61edbf32fb36c339a720896b2ef4b88a76b63ff +(I) [14:09:41.655] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e41fe16b423400a16d234d7d3890eac12b26b86a3977ed92343f67e0af0b6657 +(I) [14:09:42.298] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c519fe558cb608456beb69944411e6cb8a1e46c8fba054565994ca2665aa8dbb +(I) [14:09:46.370] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b0124833ba9b9749d21f4296c520931d9990bd827d60d5c7e43c69daee0156b4 +(I) [14:09:50.722] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=44a40d09f22cdbd38b2c985c6dc40754310b02b41d55dc822a5b1d6e75d83579 +(I) [14:09:52.321] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=663e1158d6234bf6aeb2786acf7ce7c5067086543fbea4d6282755d6d42f602c +(I) [14:09:53.545] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=eebebb70d454e338b4c4e00db2a3a010793357fc3dc93afca6cc5885cac2d722 +(I) [14:09:54.748] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d7504465189c6a53363834efbfad4e7790700d4ce6b356b2fc1f215b76a4938b +(I) [14:09:58.002] [000022800]: Local user framerate is [90.454773] +(I) [14:09:58.002] [000022800]: Local user MinDelay=[28ms], MaxDelay=[73ms], AvgDelay=[55ms], minRTT[110ms], maxRTT[242ms], avgRTT[173ms] +(I) [14:10:01.511] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c8249bcd3086691aa00c619c9a8806cb27cf8a97dc7cbf6c77c90ae0bd34ba48 +(I) [14:10:10.584] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=56af27295ae2de1e14b116eb73fd7a3ca1b7fe8290dea0e2d8a66e58eeb2477b +(I) [14:10:13.395] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a7b3309617dcfc776aa9dba8457df1df7982ae7eb87344e1fc81ec139662b031 +(I) [14:10:17.010] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=239/0, mdat=455/910, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=28/7, lb_c=0/0, cast=0/0, cdat=212/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:10:17.532] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c909c5e8e3ea36bcd7f31a029e2c1b185150f2c13f5d0ec3393e8f0cbab595ec +(I) [14:10:19.011] [000022800]: Local user framerate is [92.981400] +(I) [14:10:19.011] [000022800]: Local user MinDelay=[28ms], MaxDelay=[75ms], AvgDelay=[56ms], minRTT[110ms], maxRTT[242ms], avgRTT[172ms] +(I) [14:10:21.006] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=19/0, mdat=32/64, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=3/1, lb_c=0/0, cast=0/0, cdat=14/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:10:21.971] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=bb5089f53d2903d5bde845b9ddc4c50b97ac8dab747dc70f03e906d3fd5e6ee3 +(I) [14:10:26.226] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=06fd0ece908f4facc000f69b2627e9df85a49d1eb0b47a1b3464b2db6be3b61e +(I) [14:10:35.830] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2f0689f2428faf13cea7c6ec8769e7bca078058ccd6464652474f19b7ffff987 +(I) [14:10:40.001] [000022800]: Local user framerate is [97.965706] +(I) [14:10:40.001] [000022800]: Local user MinDelay=[44ms], MaxDelay=[68ms], AvgDelay=[57ms], minRTT[121ms], maxRTT[233ms], avgRTT[174ms] +(I) [14:10:44.979] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=304d34b8ef598bb8040215b7e3be077ebe1c8b2f17ad4ed758b49bc9f685fcfe +(I) [14:10:58.134] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c146eac26e878ceea5fc2a385a1b85b3dfe19aff69d14bc7287477b9d406f0d8 +(I) [14:11:01.020] [000022800]: Local user framerate is [101.589836] +(I) [14:11:01.020] [000022800]: Local user MinDelay=[43ms], MaxDelay=[71ms], AvgDelay=[57ms], minRTT[119ms], maxRTT[240ms], avgRTT[176ms] +(I) [14:11:02.412] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=828229eca307d6225861ac57be5394d2aaa82490602967fddd97e5c9291cf5c6 +(I) [14:11:10.169] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d6d402c8bdf72f463f2e9e9aa76bf8b8309578d81b8c9bcc5961c9a4607f6b42 +(I) [14:11:11.857] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d6f2639825f52ff8b369b74c540059009b856991b75d4ea1db186100f5073e7a +(I) [14:11:14.188] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=21099fbe7ded58ab291366a2289633855b93a5be8286d462c510c7194c28f0dc +(I) [14:11:18.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=269/0, mdat=456/912, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=27/7, lb_c=0/0, cast=0/0, cdat=223/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:11:20.192] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a9458b36247e5fec029b25eb5009a007c2e5190d87b7173c729f69f2e2c1fe92 +(I) [14:11:22.003] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=20/0, mdat=32/64, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=4/2, lb_c=0/0, cast=0/0, cdat=19/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:11:22.022] [000022800]: Local user framerate is [94.085884] +(I) [14:11:22.022] [000022800]: Local user MinDelay=[43ms], MaxDelay=[80ms], AvgDelay=[58ms], minRTT[117ms], maxRTT[240ms], avgRTT[175ms] +(I) [14:11:23.256] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c3769797eafcb2a74e2c9b23a350303e2a8d53fca84162e6d3bcd773554d99d3 +(I) [14:11:28.906] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=682e0e9a6aeeab40268d40f7cd6b7dacc9ce72e480dabbc53a3d6f32a18f77ec +(I) [14:11:29.886] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=adabf55f13d18e82c60626ce6fba4ab261bebb3d3892468147f2c6191e5b3db2 +(I) [14:11:35.968] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9d9e5541b02d7bb949f4006fe7bf3c5cb0fd8e920f1d4f8c7809212eb9463f96 +(I) [14:11:39.991] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b0d46f86fc8d4b6b03ba6e9d1e134a1775da4646ffc0f70930d39a2d36832b98 +(I) [14:11:43.005] [000022800]: Local user framerate is [85.037247] +(I) [14:11:43.005] [000022800]: Local user MinDelay=[50ms], MaxDelay=[80ms], AvgDelay=[64ms], minRTT[123ms], maxRTT[234ms], avgRTT[170ms] +(I) [14:11:44.733] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b46e2adfdfd67dcf68fd12ad1631dfcf8471b870328fd27c3035a8d52540603a +(I) [14:11:55.006] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ee3972fec2babd6165ba948bf63eef122be5cdd4cbafb7640e6f879d8cd931c6 +(I) [14:12:03.103] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=01d38180ef6642f738d571a952aef4a4a9ac5e002eb7b6a03793a07ec566386b +(I) [14:12:04.004] [000022800]: Local user framerate is [86.311157] +(I) [14:12:04.004] [000022800]: Local user MinDelay=[50ms], MaxDelay=[80ms], AvgDelay=[65ms], minRTT[109ms], maxRTT[285ms], avgRTT[170ms] +(I) [14:12:10.874] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9fb8dfc83b2be29d2545b116074eb15f8261fda162708c7d8a386dbb5f6c4516 +(I) [14:12:18.566] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5b50353bbe809b93c2dee6500382d2fd67e14a10661746b7eb3ec023c8bfb383 +(I) [14:12:19.008] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=237/0, mdat=456/912, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=28/7, lb_c=0/0, cast=0/0, cdat=204/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:12:20.446] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1a9dedcba0c205f28fa9c2ccf94235b40ed385ba50a62fff8dbbf5490404af64 +(I) [14:12:22.696] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=648b9443e0e887ca83875fb07252e23509d6963b637b000a916c50064581e1b9 +(I) [14:12:23.005] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=18/0, mdat=32/64, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=2/1, lb_c=0/0, cast=0/0, cdat=15/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:12:25.001] [000022800]: Local user framerate is [94.926262] +(I) [14:12:25.001] [000022800]: Local user MinDelay=[44ms], MaxDelay=[82ms], AvgDelay=[65ms], minRTT[109ms], maxRTT[285ms], avgRTT[169ms] +(I) [14:12:30.035] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e40f5df70b7c6addeb6a5cc7012726bfb7e26bbe0378fb57336489155a62c17b +(I) [14:12:45.121] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=23daffb684d6225baf5c8a46652c65bcbfceae180aff3fe16d5f7e174a482834 +(I) [14:12:46.000] [000022800]: Local user framerate is [98.050003] +(I) [14:12:46.000] [000022800]: Local user MinDelay=[50ms], MaxDelay=[78ms], AvgDelay=[65ms], minRTT[123ms], maxRTT[241ms], avgRTT[167ms] +(I) [14:12:49.955] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d33ea64b0a309b3d3ffecab62b5e569e76ce04d03b0b633c2fc814d049be0191 +(I) [14:12:51.701] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fd84935a52fd453b4ac9610b5895939e8ed719203dacb39db2a60893741c04d2 +(E) [14:12:52.961] [000022800]: TelemetryRow::addString : Key: (ability_name), Value (35) is larger than Column (32) +(I) [14:12:53.208] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=12a86065b426ff8ac14a75c35ca5f466328feec4896154a8182b770aafa1fec3 +(I) [14:12:54.711] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=36526874f764fca1f772550b4997bd9d44a1f0dd62fa9edbf493b70fce3fdbd4 +(I) [14:12:56.580] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f0e17a236ea210c45b57bf451e88157e080b75e94df82e204cc7a804a8ee25c7 +(I) [14:12:58.125] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0642e4eab6f3a623eebc1b84e447c8dbe0a344f25e904bfe1a245eaf540ee1f4 +(I) [14:13:02.662] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7087bef773dabcce0fa48e0d6110f868f451f2a987674c6514bd43db77584d05 +(I) [14:13:07.004] [000022800]: Local user framerate is [101.650002] +(I) [14:13:07.004] [000022800]: Local user MinDelay=[49ms], MaxDelay=[79ms], AvgDelay=[64ms], minRTT[110ms], maxRTT[241ms], avgRTT[168ms] +(I) [14:13:08.342] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=06598251c168c5d8647f50b38f8546b55c5101c5acf8e6f88ed952f9c3f0ba50 +(I) [14:13:10.467] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f40cf6ec8fcbd16c556e18ab2e7cbad723694ba7aa245e2e09460c78013bb7c7 +(I) [14:13:12.340] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f13c19ad73d0d2c9259525deb9f103e6131d101d954172ebd7e7650dcd0efd1f +(I) [14:13:16.231] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9755999c9b5c5119b53f3526e97b49179b54e2f8c13dc27f5aa4da5c80a6a30f +(I) [14:13:20.001] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=279/0, mdat=456/912, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=28/7, lb_c=0/0, cast=0/0, cdat=246/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:13:24.005] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=16/0, mdat=32/64, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=2/1, lb_c=0/0, cast=0/0, cdat=13/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:13:24.916] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6609507b7292acefe6f52243dfa185a6c583f1b2a2b2384dff7d528683b34a9c +(I) [14:13:28.003] [000022800]: Local user framerate is [99.740021] +(I) [14:13:28.003] [000022800]: Local user MinDelay=[48ms], MaxDelay=[82ms], AvgDelay=[63ms], minRTT[110ms], maxRTT[296ms], avgRTT[169ms] +(I) [14:13:30.337] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d3214f543f74164ca3cc70e5d9ca3358e8e415d6ac9c1ab67baa48b69c1f6fea +(I) [14:13:42.724] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e29015b8573818370f579d1c6c54874f11bf9f3c059230505c2ce28870e2dae0 +(I) [14:13:47.543] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=25fe47959dbace0cdf64c143fe585bf58771c4c26c436b0ffae592ffc8c586bb +(I) [14:13:49.002] [000022800]: Local user framerate is [95.985603] +(I) [14:13:49.002] [000022800]: Local user MinDelay=[42ms], MaxDelay=[71ms], AvgDelay=[57ms], minRTT[116ms], maxRTT[298ms], avgRTT[175ms] +(I) [14:13:55.014] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=54da40bd68ad4db988b97beb07b796f8d34427f9a3f64f7bccaf92c4b33ad6ee +(I) [14:13:58.005] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9354c22e8f15aec9ce5ebd3d55963f96d4b4cc8e55341034e210d5ced5a5b3e2 +(I) [14:14:05.238] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=dcfdae184c22362f77375c013603e2959876d616074aaf8c1d088ba263161611 +(I) [14:14:10.005] [000022800]: Local user framerate is [94.300003] +(I) [14:14:10.005] [000022800]: Local user MinDelay=[42ms], MaxDelay=[75ms], AvgDelay=[59ms], minRTT[110ms], maxRTT[298ms], avgRTT[172ms] +(I) [14:14:11.366] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b547d77e97c74750bb8c952bb16eabb275277f5958b0da0129f1b6499aa7f00d +(I) [14:14:13.245] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3ec532945007a1402fd4aaa816a1c92ac273759ccb43bd1e1483579f0470705e +(I) [14:14:15.493] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c7813e3288dc987d498312a908f453c7e979b2f167558d1bffbde56ed3103ac0 +(I) [14:14:21.006] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=270/0, mdat=455/910, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=28/7, lb_c=0/0, cast=0/0, cdat=230/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:14:23.620] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=21dcfabda6aa6b9a064bb55f91a19383173a6c928d7deb126913713a9c5d98ab +(I) [14:14:25.009] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=26/0, mdat=32/64, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=3/1, lb_c=0/0, cast=0/0, cdat=20/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:14:25.744] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=32a6cd38bab2bb7d3f27150cbe8c77f0f94227a0401abf7ba07987df21f47557 +(I) [14:14:29.270] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=170c81cba9608a54e9dad758bbcfc83dcf801a713117cadf777e071eca1a3594 +(I) [14:14:30.874] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8bf5984afb95c6cfbde3f595da8910bec575e88d0b61a4a1021bc1240d64103a +(I) [14:14:31.007] [000022800]: Local user framerate is [97.045143] +(I) [14:14:31.007] [000022800]: Local user MinDelay=[55ms], MaxDelay=[62ms], AvgDelay=[58ms], minRTT[165ms], maxRTT[176ms], avgRTT[170ms] +(I) [14:14:32.539] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=df702b500fac19891f4420f77e5f19c5bf33c1473e8fdf7f62d27eaa90bb7533 +(I) [14:14:44.187] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ed8d792769959a5ca67f69ebc38470fcbf7e2e0bc22f68a0f024aa6e302649e9 +(I) [14:14:45.007] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2d6530460ed1c716a11252972e52a514c2c7ed7103902494d3870581641f207d +(I) [14:14:45.643] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2dd953c3e25ffe3f4bccfe77cba9fa8db3ac9135a0042146b26050f4a58f2288 +(I) [14:14:47.886] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a3541b0075931b72fdda4bcdb1f97638ec06ec07b070d6c96b78a47afd6cadb1 +(I) [14:14:49.382] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=48601a190d23c0541a9d08dc49e8e74a998c70fbb5ce340548474ca183bb9062 +(I) [14:14:51.127] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1268da3845035a9ba0a64730cc9c26ba6278506606b520b39c179901f54128e4 +(I) [14:14:52.007] [000022800]: Local user framerate is [97.290268] +(I) [14:14:52.007] [000022800]: Local user MinDelay=[31ms], MaxDelay=[77ms], AvgDelay=[61ms], minRTT[121ms], maxRTT[230ms], avgRTT[168ms] +(I) [14:14:53.884] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=48c19817b6fb45a64a2bdf64c80d4005fe4d176ee89f6b0183711949a5aac6b8 +(I) [14:14:56.899] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9c00354d059b81c70186d45b9e21fa9ed645d242039448f46c9c69c71b16ab44 +(I) [14:15:00.509] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=520df1efe70c8f7c6c1629076d8cb925db3ea3f2474e7088cd705abf9f1c6e1b +(I) [14:15:07.076] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1170536e674cdcfb22d0d4f9104a4cf282479af58e11006a51c44fe1c19dd11b +(I) [14:15:13.002] [000022800]: Local user framerate is [96.161530] +(I) [14:15:13.002] [000022800]: Local user MinDelay=[31ms], MaxDelay=[77ms], AvgDelay=[61ms], minRTT[120ms], maxRTT[238ms], avgRTT[169ms] +(I) [14:15:14.876] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0dccc3d46a6c13ac921cdb227a390f648f6429d1460f50f41ce4b30f0bf342b7 +(I) [14:15:20.711] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4b2f3377affe641feb84660498dacaaf9178d49ed0922852dbf55966b56ba522 +(I) [14:15:22.002] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=277/0, mdat=456/912, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=29/8, lb_c=0/0, cast=0/0, cdat=231/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:15:23.425] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9c23008d4a7fbef07387b504cdf14be60ea9632b257edfed5fb2e87fec19d4bb +(I) [14:15:26.009] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=21/0, mdat=32/64, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=1/0, lb_c=0/0, cast=0/0, cdat=18/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:15:30.771] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=07a20173c0721497b524f4fa238195db152ea97d78e4ed30a20356b48b53d6ef +(I) [14:15:34.004] [000022800]: Local user framerate is [97.710907] +(I) [14:15:34.004] [000022800]: Local user MinDelay=[52ms], MaxDelay=[74ms], AvgDelay=[62ms], minRTT[111ms], maxRTT[219ms], avgRTT[162ms] +(I) [14:15:37.419] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1e4fd6da3b015a664e191f331ce550f4cbe9ffc139f1b0d1348973847cfa103b +(I) [14:15:41.092] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2204077c78216c9fc794d03740bcf88aca168d0626de970fdd41c0a0219c6470 +(I) [14:15:44.557] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=05001947184c3b70cd44b33c9ecb9c6689cb0e90613b613311425955c17237d5 +(I) [14:15:45.211] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c9542e77b225fedd2331b1bdfbbc72a66708caddab578fd23813606fd146de98 +(I) [14:15:51.580] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=73ad6979990b6efa13264d80ed360798f18a7497da293d065369e942a51683c5 +(I) [14:15:55.000] [000022800]: Local user framerate is [84.753380] +(I) [14:15:55.000] [000022800]: Local user MinDelay=[46ms], MaxDelay=[82ms], AvgDelay=[63ms], minRTT[111ms], maxRTT[237ms], avgRTT[166ms] +(I) [14:15:55.045] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=59d2ea4ab09730931346a36edbc628a23e0d890726dd55315a78f2a67781bdef +(I) [14:15:55.374] [000022800]: GameObj::SchedulePeerForDestruction - info, frame [9311], peer for station [1] scheduled for destruction on frame 9312. +(I) [14:15:55.374] [000022800]: GameObj::SchedulePeerForDestruction - handling UI call to inform user of drop. +(I) [14:15:55.374] [000022800]: GAME -- Frame 9311 - SchedulePeerForDestruction - peer 1001 scheduledfor destruction +(I) [14:15:55.399] [000022800]: Picked to migrate AI to network station id: 2 +(I) [14:15:55.469] [000022800]: GameObj - AI Simulation for player [1001] migrated to local station [2]. +(I) [14:15:55.469] [000022800]: GameObj::KillAllDropped - Processing disconnected player [1001], set to migrate to station [2]. +(I) [14:15:55.746] [000022800]: MOD -- Player ASWZ ScrotalLord set to AI Type: Remote Human Takeover (frame 9314) (CmdAI) +(I) [14:15:57.693] [000022800]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [14:15:57.693] [000022800]: WorldwidePartyService::PeerRemove, Removing peer ID: 1 +(I) [14:15:57.693] [000022800]: peerremove - peerIDRemoved=132716, reasonID=1000, reason debug hint - MatchSetup::Disconnect +(I) [14:15:57.693] [000022800]: ServerSynchronization::OnDestroyedPeerEvent - info, drop event received for remote station [1]. +(I) [14:15:57.693] [000022800]: GameObjController - OnMatchEvent: event type 1 +(I) [14:15:57.693] [000022800]: WorldwideAdvertisementService::Process - EVENT_HOSTMIGRATION +(I) [14:15:57.693] [000022800]: WorldwidePartyService::OnHostMigration - [5869085] Hosting has migrated to us, updating match info +(I) [14:15:57.693] [000022800]: GameObjController - OnMatchEvent: event type 7 +(I) [14:15:57.703] [000022800]: Sending matchinfo change #49 +(I) [14:15:57.703] [000022800]: GameObjController - OnMatchEvent: event type 6 +(E) [14:15:57.931] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [14:15:58.200] [000022800]: GameObjController - OnMatchEvent: event type 10 +(I) [14:16:00.378] [000022800]: MOD -- Game Over at frame 9351 +(I) [14:16:00.470] [000022800]: Report sent for profileID[132716] -> race=[137123], result=[0], XP Gain=[6946] +(I) [14:16:00.470] [000022800]: Report sent for profileID[3264] -> race=[129494], result=[1], XP Gain=[10507] +(I) [14:16:00.494] [000022800]: Party::SetStatus - S_CONFIGURING +(I) [14:16:00.510] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2b89838115ad0eb1e9276dcae6662cec78729e8f9e07dd95b3ed4a85ee65e969 +(I) [14:16:00.510] [000022800]: Sending matchinfo change #15 +(E) [14:16:00.547] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [14:16:01.014] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9c0870fb34e8bd7c3ff39aa6a461807f53725c0eb89fcf20cd926b9eb4fea4eb +(I) [14:16:01.519] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=181e847e45444c65f5f5ad4c676a874aef55122bb84dd5ad040686bc3b9bbb6f +(I) [14:16:01.939] [000022800]: MPMatchSetup::OnMatchEvent - MET_ReportResults - result [0] +(I) [14:16:01.939] [000022800]: GameObjController - OnMatchEvent: event type 9 +(I) [14:16:02.020] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0da397c4c03265d190fd8207f4248e5625428bd8e79e5e326e417990056eabe6 +(I) [14:16:02.142] [000023200]: Read bytes [0,"AvatarStatsUpdatedMessage",3264,[[[1,3264,77,"",1680524161]]]] +(I) [14:16:02.142] [000023200]: Read bytes [0,"AvatarStatsUpdatedMessage",3264,[[[2,3264,48,"",1680524161]]]] +(I) [14:16:02.142] [000023200]: Read bytes [0,"AvatarStatsUpdatedMessage",3264,[[[3,3264,93918,"",1680524161]]]] +(I) [14:16:02.142] [000023200]: Read bytes [0,"AvatarStatsUpdatedMessage",3264,[[[13,3264,19976,"",1680524161]]]] +(I) [14:16:02.142] [000023200]: Read bytes [0,"AvatarUpdateMessage",3264,[[2720,3264,"/steam/76561198023526153","","Wolfsindis","",15990,2241,2241,2074389,null,"76561198023526153",3,[]]]] +(I) [14:16:02.142] [000023200]: Read bytes [0,"GameResultNotificationMessage",3264,[[[3264,20,129494,1,[1],15990,[["unitprod",30],["vvetrank",9],["cabil",4],["dmgdone",7134],["plost",23],["svetrank",1],["reqmax",0],["cpearn",6],["reqspnt",0],["powearn",0],["blost",4],["elitekill",-2],["edeaths",59],["structdmg",0],["pcap",35],["inactperiod",18],["lowintperiod",0],["precap",23],["sqkill",7],["popmax",0],["powspnt",0],["sqprod",8],["bprod",11],["svetxp",1800],["vabnd",0],["addonkill",57],["totalcmds",1505],["gammaspnt",0],["vkill",3],["objdmh",0],["abil",21],["sqlost",3],["vcap",0],["vlost",0],["gt",1169],["upg",878],["vvetxp",12600],["reqearn",0],["vp1",0],["vp0",0],["erein",36],["cflags",0],["wpnpu",0],["ekills",55],["powmax",0],["vprod",1]],0,10,[],null,[],[],[],[],[],[]],[132716,20,137123,0,[1],26299,[["unitprod",46],["vvetrank",3],["cabil",0],["dmgdone",4726],["plost",23],["svetrank",2],["reqmax",0],["cpearn",7],["reqspnt",0],["powearn",0],["blost",4],["elitekill",-7],["edeaths",65],["structdmg",0],["pcap",30],["inactperiod",20],["lowintperiod",0],["precap",23],["sqkill",3],["popmax",0],["powspnt",0],["sqprod",12],["bprod",11],["svetxp",3300],["vabnd",0],["addonkill",55],["totalcmds",553],["gammaspnt",0],["vkill",0],["objdmh",0],["abil",48],["sqlost",10],["vcap",0],["vlost",3],["gt",1164],["upg",43],["vvetxp",3600],["reqearn",0],["vp1",0],["vp0",0],["erein",35],["cflags",0],["wpnpu",0],["ekills",48],["powmax",0],["vprod",3]],0,0,[],null,[],[],[],[],[],[]]],[[15990,2130255,9,6,1,0,0,703,2901,284,1205,7,1143,1680524161],[26299,2130261,24,22,-1,0,0,987,2839,215,687,6,1076,1680524161]],[[1,3264,77,"",1680492596],[2,3264,48,"",1680492596],[3,3264,93918,"",1680492596],[13,3264,19976,"",1679004994],[7,132716,66,"",1680483855],[9,132716,81980,"",1680483855],[15,132716,55226,"",1680483855]],5869085,"",[]]] +(I) [14:16:02.149] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:02.149] [000022800]: RNT_StatsUpdate: Win notification, profileID 3264, race =129494, level=7, ranking=703 +(I) [14:16:02.149] [000022800]: RNT_StatsUpdate: Loss notification, profileID 132716, race =137123, level=6, ranking=987 +(I) [14:16:02.528] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e78be697234a648e5ce863e200511eba252fab98e002ea97aba3a558bdd8c499 +(I) [14:16:03.286] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:03.286] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:03.286] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:03.286] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:03.286] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:03.286] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:03.286] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:03.286] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:03.286] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:03.286] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:03.286] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:03.286] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:03.286] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:03.286] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:03.286] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:03.286] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:03.286] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:03.286] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:03.286] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:03.286] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:03.286] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:03.286] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:03.286] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:03.286] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:03.286] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:03.286] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:03.286] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:04.157] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:04.157] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:04.157] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:04.157] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:04.157] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:04.157] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:04.157] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:05.440] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:05.470] [000022800]: GetPartyStatsByID found 1 teams for user ID 3264 +(I) [14:16:05.710] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:05.710] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:20.018] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c41be595caf912a4870f8728941313245a2d483dfb43205d4954b47fa499b14c +(I) [14:16:23.008] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/2, drop=0/0, data=150/4, mdat=277/554, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=2/6, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=2/3, lb_p=34/8, lb_c=0/0, cast=0/0, cdat=123/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=1/0, actr=0/0, lsim=1/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:16:27.009] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=2/0, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:16:42.763] [000022800]: GameApp::SetTargetState : new (UnloadedGame) old (Uninitialized) +(I) [14:16:42.777] [000022800]: GameApp::SetState : new (UnloadingGame) old (Game) +(I) [14:16:43.795] [000022800]: GameObj::ShutdownGameObj +(I) [14:16:43.795] [000022800]: GetMaxFrameTimeFromProfile: players=2 expected FPS=100.000000, bars=0, max avg=0.000, sd=0.000, 0 samples = +(I) [14:16:43.795] [000022800]: PerformanceRecorder::EndRecording - game size=2, max average=0.011799, worst frame=0.010000 +(I) [14:16:43.795] [000022800]: Recording: No [2 players] + +(I) [14:16:43.795] [000022800]: Max/Avg: 0.01, 0.01 sec (fps=84.75, 102.62) (60 samples) + +(I) [14:16:43.795] [000022800]: Bars: 0 + +(I) [14:16:43.795] [000022800]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_seconds_played] +(I) [14:16:43.795] [000022800]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_units_produced] +(I) [14:16:43.795] [000022800]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_units_killed] +(I) [14:16:43.795] [000022800]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_units_lost] +(I) [14:16:43.812] [000022800]: StatArtWarningsCount 0 +(I) [14:16:43.812] [000022800]: StatDataWarningsCount 0 +(I) [14:16:44.284] [000022800]: GameApp::SetState : new (UnloadedGame) old (UnloadingGame) +(I) [14:16:44.284] [000022800]: GameApp::SetTargetState : new (Uninitialized) old (UnloadedGame) +(I) [14:16:44.306] [000022800]: SessionID : 598e1d - Disconnect called with reasonID 1000 - MatchSetup::Disconnect +(I) [14:16:44.307] [000022800]: MatchSetupManager: Removed queued match [cliff_crossing_2p] Queue is now [0] +(I) [14:16:44.307] [000022800]: SessionID : 598e1d - Disconnect called with reasonID 1000 - MatchSetup::Disconnect +(I) [14:16:44.314] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=70ab1dc6118b3fe8a712c1df322fcb4b0d9555c0b94287acbbc562ef6e5a87e5 +(I) [14:16:44.314] [000022800]: Disconnect process already running +(I) [14:16:44.317] [000022800]: SessionID : 598daf - Disconnect called with reasonID 1000 - Destroying Party +(E) [14:16:44.341] [000022800]: SetVisible called while !IsConnected +(E) [14:16:44.348] [000022800]: SetVisible called while !IsConnected +(I) [14:16:45.029] [000022800]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [14:16:45.029] [000022800]: WorldwidePartyService::PeerRemove, Removing peer ID: 2 +(I) [14:16:45.030] [000022800]: peerremove - peerIDRemoved=3264, reasonID=1000, reason debug hint - MatchSetup::Disconnect +(E) [14:16:45.038] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.049] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.060] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.071] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.082] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.093] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.104] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.115] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.127] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.138] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.149] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.160] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.170] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.182] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.193] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.204] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.215] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.226] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.237] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.248] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.259] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.270] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [14:16:45.277] [000022800]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [14:16:45.277] [000022800]: WorldwidePartyService::PeerRemove, Removing peer ID: 1 +(I) [14:16:45.277] [000022800]: peerremove - peerIDRemoved=3264, reasonID=1000, reason debug hint - Destroying Party +(E) [14:16:45.281] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.281] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.291] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.291] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.302] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.302] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.313] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.314] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.324] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.324] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.335] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.336] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.346] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.346] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.357] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.357] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.368] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.368] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.379] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.379] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.390] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.390] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.401] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.401] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.412] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.412] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.422] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.423] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.433] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.433] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.444] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.444] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.455] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.455] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.466] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.466] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.477] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.477] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.488] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.488] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.499] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.499] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.510] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.510] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.521] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.521] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.532] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.532] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.542] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.543] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.554] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.554] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.565] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.565] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.576] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.577] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.588] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.588] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [14:16:45.594] [000022800]: PeerRemoveAll - flushing local session peer data +(I) [14:16:45.594] [000022800]: LeaveSessionInternal - no action taken, needLeave=0, service=0 +(I) [14:16:45.594] [000022800]: Destroyed Matchinfo +(E) [14:16:45.595] [000022800]: Socks::Free: Socket 0/11188 did not close properly before being freed. +(I) [14:16:45.595] [000022800]: OnDestroyPartyNotification - partyID = 5869085, prevID = -1 +(I) [14:16:45.595] [000022800]: OnDestroyPartyNotification - partyID = 5869085, prevID = -1 +(E) [14:16:45.598] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.609] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.620] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.631] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.643] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.654] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.664] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.675] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.686] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.698] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:16:45.709] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [14:16:45.714] [000022800]: PeerRemoveAll - flushing local session peer data +(I) [14:16:45.714] [000022800]: LeaveSessionInternal - no action taken, needLeave=0, service=0 +(I) [14:16:45.714] [000022800]: Destroyed Matchinfo +(E) [14:16:45.715] [000022800]: Socks::Free: Socket 0/12140 did not close properly before being freed. +(I) [14:16:45.715] [000022800]: OnDestroyPartyNotification - partyID = 5868975, prevID = -1 +(I) [14:16:45.715] [000022800]: OnDestroyPartyNotification - partyID = 5868975, prevID = -1 +(I) [14:16:46.613] [000022800]: starting online hosting +(I) [14:16:47.115] [000022800]: OnlineHostAsync success +(I) [14:16:47.115] [000022800]: Created Matchinfo for sessionID 5870550 +(I) [14:16:47.115] [000022800]: OnJoinAdvertisementSuccess - joined online match, server leave notification required +(I) [14:16:47.115] [000022800]: starting local hosting +(I) [14:16:47.115] [000022800]: ValidateCustomData: called with 5586 bytes of custom data +(I) [14:16:47.115] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:47.116] [000022800]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [14:16:47.116] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:16:47.126] [000022800]: Sending matchinfo change #2 +(I) [14:16:47.126] [000022800]: HostAsync - got operation info 0:SessionOperationInfo::SUCCESS +(I) [14:16:47.133] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=1/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=1/0, Pdel=0/0, drop=0/0, data=1/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=3/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=3/0, lb_p=0/0, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=1/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:16:47.133] [000022800]: hosting - Session is connected +(E) [14:16:47.233] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [14:16:47.339] [000022800]: CreateSteamSessionAsync::Process: Successfully created lobby; lobbyId=109775243309251761 +(I) [14:16:48.099] [000023200]: Read bytes [0,"PlatformSessionUpdateMessage",3264,[5870550,"0",109775243309251761,""]] +(I) [14:16:48.099] [000022800]: Sending matchinfo change #3 +(I) [14:16:48.135] [000022800]: HostAsync - completed with HostResult = 0 +(I) [14:16:48.135] [000022800]: Party::SetHostJoinResult - 0 +(I) [14:16:48.135] [000022800]: Party::SetStatus - S_CONFIGURING +(I) [14:16:48.135] [000022800]: WorldwideAutomatchService::OnHostComplete - automatcher is no longer active - stopPollPending 0 automatchPollID 18446744073709551615 +(I) [14:16:48.224] [000022800]: Sending matchinfo change #4 +(E) [14:16:48.232] [000022800]: Rejecting packet type 0 that claims to come from ourself +(E) [14:16:48.358] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [14:16:53.660] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [14:16:53.667] [000022800]: Sending matchinfo change #6 +(E) [14:16:53.730] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [14:16:53.864] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [14:16:53.864] [000022800]: Sending matchinfo change #7 +(E) [14:16:53.984] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [14:17:04.001] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [14:17:04.008] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=84658265828cadce5988f8b3f9743dfbefd22e40c83974ecdad92a3151e4bac2 +(I) [14:17:04.226] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [14:17:15.002] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [14:17:15.185] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [14:17:24.008] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5e7d21eb3ab3ac4d5e2bb83a0a3909f2aa20939ab64bdbb98978f5510c9cb8e6 +(I) [14:17:26.003] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [14:17:26.200] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [14:17:33.198] [000023200]: Read bytes [0,"Automatch2GameMessage",3264,["34038","5870608","rural_town_2p_mkii","129494","1","2","2","1","authtoken","3.120.213.190",27002,27112,27212,[[5870608,3264,702,15990,129494,1,"/10.0.70.34"],[5870608,34038,801,71768,198437,0,"/10.0.70.222"]],""]] +(I) [14:17:33.200] [000022800]: AutomatchInternal - OnJoinAutomatch - Server told us join matchID=5870608, hostProfileID=34038 +(I) [14:17:33.200] [000022800]: AutomatchInternal - join request validated, attempting +(I) [14:17:33.650] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:17:33.679] [000022800]: JoinAsync: Starting AsyncJob... +(I) [14:17:33.877] [000022800]: OnlineJoinAsync success +(I) [14:17:33.877] [000022800]: Created Matchinfo for sessionID 5870608 +(I) [14:17:33.877] [000022800]: OnJoinAdvertisementSuccess - joined online match, server leave notification required +(I) [14:17:34.117] [000022800]: ValidateCustomData: called with 2836 bytes of custom data +(I) [14:17:34.117] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:17:34.117] [000022800]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [14:17:34.117] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:17:34.117] [000022800]: ValidateCustomData: called with 2299 bytes of custom data +(I) [14:17:34.117] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:17:34.117] [000022800]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [14:17:34.117] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:17:34.124] [000022800]: Accepted matchInfo updated 41 from host +(I) [14:17:34.132] [000022800]: JoinAsync - got operation info 0:SessionOperationInfo::SUCCESS +(I) [14:17:34.138] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=1/1, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/4, Pdel=0/0, drop=0/0, data=1/2, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=2/7, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=2/3, lb_p=0/0, lb_c=0/1, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(E) [14:17:34.344] [000022800]: JoinSteamSessionAsync::Process: Steam join lobby completed; failed=0 failureReason=-1 +(E) [14:17:34.344] [000022800]: JoinSteamSessionAsync::OnLobbyEnter: Error joining lobby; lobbyId=0 ioError=1 response=0 +(E) [14:17:34.358] [000022800]: JoinAsync: failed to join platform session. Continuing anyway +(I) [14:17:34.358] [000022800]: JoinAsync - completed with JoinResult = 0 +(I) [14:17:34.358] [000022800]: JoinAsync - completed with JoinResult = 0:AdvertisementJoinEvent::R_Success +(I) [14:17:34.358] [000022800]: Creating an RLink chat channel (not a multiplayer game). +(I) [14:17:34.359] [000022800]: WorldwideAutomatch2Service::OnJoinComplete - Completed Join with joinResult=0 matchID=5870608 +(I) [14:17:34.359] [000022800]: JoinAsync: AsyncJob Complete... +(I) [14:17:34.359] [000022800]: Sending matchinfo change #8 +(E) [14:17:34.504] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [14:17:34.567] [000022800]: WorldwideAutomatch2Service::Process - Got into game successfully, 2 players present, got correct slot settings - setting metadata +(I) [14:17:34.752] [000022800]: Accepted matchInfo updated 42 from host +(I) [14:17:37.002] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [14:17:37.208] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [14:17:38.002] [000022800]: WorldwideAutomatch2Service::Process - Waiting, only 0 players ready +(I) [14:17:42.001] [000022800]: WorldwideAutomatch2Service::Process - Waiting, only 0 players ready +(I) [14:17:44.007] [000022800]: Party::SetStatus - S_PLAYING +(I) [14:17:44.027] [000022800]: Sending matchinfo change #9 +(E) [14:17:44.135] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [14:17:46.000] [000022800]: WorldwideAutomatch2Service::Process - Got into game successfully, 2 players present, got correct slot settings - readying up +(I) [14:17:46.001] [000022800]: WorldwidePartyService::RequestReady: Sending PlayerReadyRequest; profileID=3264 isReady=1 isSuccessful=1 +(I) [14:17:46.008] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=97e830071363e42e199b1db393999ebac9b8ec5ef5c525b296fa48fb852b3f68 +(I) [14:17:46.015] [000022800]: Accepted matchInfo updated 43 from host +(I) [14:17:46.263] [000022800]: Accepted matchInfo updated 44 from host +(I) [14:17:47.388] [000022800]: Accepted matchInfo updated 45 from host +(I) [14:17:47.388] [000022800]: WorldwideAutomatchService::OnStartComplete - detected successful game start +(I) [14:17:47.388] [000022800]: Match Started - [34038 /steam/76561198212034715], slot = 0, ranking = 801 +(I) [14:17:47.388] [000022800]: Match Started - [3264 /steam/76561198023526153], slot = 1, ranking = 702 +(I) [14:17:47.753] [000023200]: Read bytes [0,"MatchStartMessage",3264,[[[34038,["2068340"]],[3264,["2068341","2068340"]]],[["34038","198437"],["3264","129494"]],1680524267,[["34038",[[9182605,50,452654,34038,1,0,"{}",1677187144,2,-1,19,2147483647],[9182633,1,453412,34038,1,0,"{}",1677187144,4,-1,3,2147483647],[9182604,44,452655,34038,1,0,"{}",1677187144,6,-1,19,2147483647],[9182613,51,453294,34038,1,0,"{\"epos\":\"0\",\"eslot\":\"0\"}",1677187144,9182605,-1,19,2147483647],[9182614,51,453390,34038,1,0,"{\"epos\":\"1\",\"eslot\":\"1\"}",1677187144,9182605,-1,19,2147483647],[9182615,51,453430,34038,1,0,"{\"epos\":\"2\",\"eslot\":\"2\"}",1677187144,9182605,-1,19,2147483647],[9182675,51,454134,34038,1,0,"{\"epos\":\"4\",\"eslot\":\"4\"}",1677187144,9182605,-1,19,2147483647],[9182676,51,454129,34038,1,0,"{\"epos\":\"21\",\"eslot\":\"21\"}",1677187144,9182605,-1,19,2147483647],[9182677,51,454130,34038,1,0,"{\"epos\":\"22\",\"eslot\":\"22\"}",1677187144,9182605,-1,19,2147483647],[9182678,51,454131,34038,1,0,"{\"epos\":\"23\",\"eslot\":\"23\"}",1677187144,9182605,-1,19,2147483647],[9182679,51,454135,34038,1,0,"{\"epos\":\"19\",\"eslot\":\"19\"}",1677187144,9182605,-1,19,2147483647],[9182680,51,454136,34038,1,0,"{\"epos\":\"5\",\"eslot\":\"5\"}",1677187144,9182605,-1,19,2147483647],[9182681,51,454137,34038,1,0,"{\"epos\":\"20\",\"eslot\":\"20\"}",1677187144,9182605,-1,19,2147483647],[9182682,51,454133,34038,1,0,"{\"epos\":\"3\",\"eslot\":\"3\"}",1677187144,9182605,-1,19,2147483647],[9182683,51,454139,34038,1,0,"{\"epos\":\"8\",\"eslot\":\"8\"}",1677187144,9182605,-1,19,2147483647],[9182684,51,454150,34038,1,0,"{\"epos\":\"9\",\"eslot\":\"9\"}",1677187144,9182605,-1,19,2147483647],[9182685,51,454149,34038,1,0,"{\"epos\":\"10\",\"eslot\":\"10\"}",1677187144,9182605,-1,19,2147483647],[9182686,51,454138,34038,1,0,"{\"epos\":\"11\",\"eslot\":\"11\"}",1677187144,9182605,-1,19,2147483647],[9182687,51,454142,34038,1,0,"{\"epos\":\"12\",\"eslot\":\"12\"}",1677187144,9182605,-1,19,2147483647],[9182688,51,454141,34038,1,0,"{\"epos\":\"13\",\"eslot\":\"13\"}",1677187144,9182605,-1,19,2147483647],[9182689,51,454143,34038,1,0,"{\"epos\":\"15\",\"eslot\":\"15\"}",1677187144,9182605,-1,19,2147483647],[9182690,51,454140,34038,1,0,"{\"epos\":\"16\",\"eslot\":\"16\"}",1677187144,9182605,-1,19,2147483647],[9182691,51,454148,34038,1,0,"{\"epos\":\"6\",\"eslot\":\"6\"}",1677187144,9182605,-1,19,2147483647],[9182692,51,454144,34038,1,0,"{\"epos\":\"17\",\"eslot\":\"17\"}",1677187144,9182605,-1,19,2147483647],[9182693,51,454145,34038,1,0,"{\"epos\":\"18\",\"eslot\":\"18\"}",1677187144,9182605,-1,19,2147483647],[9182694,51,454146,34038,1,0,"{\"epos\":\"7\",\"eslot\":\"7\"}",1677187144,9182605,-1,19,2147483647],[9182716,51,454534,34038,1,0,"{\"epos\":\"24\",\"eslot\":\"24\"}",1677187144,9182605,-1,19,2147483647],[9182717,51,454535,34038,1,0,"{\"epos\":\"25\",\"eslot\":\"25\"}",1677187144,9182605,-1,19,2147483647],[42102448,7,454132,34038,1,0,"{\"epos\":\"26\",\"eslot\":\"26\"}",1679679870,9182605,-1,19,2147483647],[42102449,7,455250,34038,1,0,"{\"epos\":\"27\",\"eslot\":\"27\"}",1679679870,9182605,-1,19,2147483647],[42102450,7,455277,34038,1,0,"{\"epos\":\"28\",\"eslot\":\"28\"}",1679679870,9182605,-1,19,2147483647],[9182592,1,454524,34038,1,0,"{\"epos\":\"0\",\"eslot\":\"0\",\"dlc\":1}",1677187144,9182633,-1,19,-1],[9182594,1,454522,34038,1,0,"{\"epos\":\"10\",\"eslot\":\"10\",\"dlc\":1}",1677187144,9182633,-1,19,-1]]],["3264",[[2068692,70,451707,3264,1,0,"{}",1677175765,2,-1,19,2147483647],[2068728,1,453412,3264,1,0,"{}",1677175765,4,-1,3,2147483647],[2068694,46,451861,3264,1,0,"{}",1677175765,6,-1,19,2147483647],[2068436,70,453392,3264,1,0,"{\"att\":{\"is_new\":{\"val\":\"0\"}},\"epos\":\"6\",\"eslot\":\"6\",\"dlc\":1}",1677175764,2068692,-1,19,-1],[2068441,70,453358,3264,1,0,"{\"att\":{\"is_new\":{\"val\":\"0\"}},\"epos\":\"3\",\"eslot\":\"3\",\"dlc\":1}",1677175764,2068692,-1,19,-1],[2068444,70,454501,3264,1,0,"{\"att\":{\"is_new\":{\"val\":\"0\"}},\"epos\":\"11\",\"eslot\":\"11\",\"dlc\":1}",1677175764,2068692,-1,19,-1],[2068445,70,453268,3264,1,0, +(I) [14:17:47.759] [000022800]: WorldwideAutomatchService::OnStartComplete - detected successful game start +(I) [14:17:47.759] [000022800]: WorldwideAutomatchService::OnStartComplete - forcing pollcomplete event +(I) [14:17:47.759] [000022800]: GameApp::SetTargetState : new (Game) old (Uninitialized) +(I) [14:17:47.767] [000022800]: MOD - Setting player [0] race to: [198437] +(I) [14:17:47.768] [000022800]: MOD - Setting player [1] race to: [129494] +(I) [14:17:47.770] [000022800]: ModDllSetup: SetStatsGameUID=23482433 +(I) [14:17:47.770] [000022800]: GAME -- Scenario: data:scenarios\multiplayer\rural_town_2p_mkii\rural_town_2p_mkii +(I) [14:17:47.770] [000022800]: GAME -- Win Condition Qualified Name: 00000000000000000000000000000000:3318379781 +(I) [14:17:47.770] [000022800]: GAME -- Win Condition Name: VictoryPoint +(I) [14:17:47.770] [000022800]: GAME -- Human Player: 0 Kirov 34038 0 afrika_korps +(I) [14:17:47.770] [000022800]: GAME -- Human Player: 1 Wolfsindis 3264 1 americans +(I) [14:17:47.770] [000022800]: GameApp::SetState : new (LoadingGame) old (UnloadedGame) +(I) [14:17:47.962] [000022800]: WorldwideAutomatch2Service::OnPollComplete - I am peer 2, ihost:0, islocal:1 +(I) [14:17:47.962] [000022800]: WorldwideAutomatch2Service::OnPollComplete - All players in session and ready, automatch process complete +(I) [14:17:48.003] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=8/12, mdat=0/0, voip=0/0, rchk=0/0, nudg=3/6, Thdr=0/0, Peer=11/18, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=11/9, lb_p=5/1, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:17:48.591] [000022800]: GameObj::StartGameObj - info, network session GUID set to [23482433]. +(I) [14:17:48.592] [000020844]: Loading step: [OnBeginLoad] +(I) [14:17:48.592] [000020844]: Loading step: [Assign Players] +(I) [14:17:48.593] [000020844]: Loading step: [FXReflection] +(I) [14:17:48.593] [000020844]: Loading step: [FXDataContext] +(I) [14:17:48.593] [000020844]: Loading step: [FX Texture Pack] +(I) [14:17:48.594] [000020844]: Loading step: [Run Havok Garbage Collection] +(I) [14:17:48.594] [000020844]: Loading step: [Flush Inventory On Application Exit] +(I) [14:17:48.594] [000020844]: Loading step: [Default World] +(I) [14:17:48.605] [000020844]: Loading step: [FX Command Function] +(I) [14:17:48.605] [000020844]: Loading step: [AnimatorCommandFunction] +(I) [14:17:48.605] [000020844]: Loading step: [MemShrink] +(I) [14:17:48.606] [000020844]: Loading step: [Sync Checking] +(I) [14:17:48.606] [000020844]: Loading step: [Tuning Variant] +(I) [14:17:48.606] [000020844]: Using scenario tuning variant [default] +(I) [14:17:48.606] [000020844]: Loading step: [Mod Packs] +(I) [14:17:48.606] [000020844]: Loading step: [SimVis System] +(I) [14:17:48.606] [000020844]: Loading step: [DefaultWorld] +(I) [14:17:48.606] [000020844]: Loading step: [Visual Physics ME] +(I) [14:17:48.606] [000020844]: Loading step: [Deferred Decal Manager] +(I) [14:17:48.606] [000020844]: Loading step: [FogVolumeManager] +(I) [14:17:48.606] [000020844]: Loading step: [Vehicle Physics Function] +(I) [14:17:48.606] [000020844]: Loading step: [Unit Occlusion Function] +(I) [14:17:48.606] [000020844]: Loading step: [Splat Function] +(I) [14:17:48.606] [000020844]: Loading step: [Grass Function] +(I) [14:17:48.606] [000020844]: Loading step: [Object Alpha Factor Function] +(I) [14:17:48.606] [000020844]: Loading step: [Renderable Managers] +(I) [14:17:48.606] [000020844]: Loading step: [Setup Skins] +(I) [14:17:48.606] [000020844]: Loading step: [AnimEventSetup] +(I) [14:17:48.606] [000020844]: Loading step: [Session Precache] +(I) [14:17:48.811] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:17:48.811] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:17:48.811] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:17:48.811] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:17:48.811] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:17:48.811] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:17:48.811] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:17:48.811] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:17:48.811] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:17:48.811] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:17:48.811] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:17:48.811] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:17:48.811] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:17:48.811] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:17:48.811] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:17:48.811] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:17:48.811] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:17:48.811] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:17:48.811] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:17:48.811] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:17:48.811] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:17:48.811] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:17:48.811] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:17:48.811] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:17:48.811] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:17:48.811] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:17:48.811] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:17:48.908] [000020844]: Loading step: [Precache core resources] +(I) [14:17:48.908] [000020844]: Loading step: [Precache EBPs] +(I) [14:17:48.910] [000020844]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [14:17:48.910] [000020844]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [14:17:48.910] [000020844]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [14:17:48.910] [000020844]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [14:17:49.497] [000020844]: Loading step: [Precache State Tree references] +(I) [14:17:49.551] [000020844]: Loading step: [Load Actions] +(I) [14:17:49.553] [000020844]: Loading step: [Load Resources from Precache] +(I) [14:17:56.847] [000020844]: Loading step: [GEWorld] +(I) [14:17:56.847] [000020844]: GAME - InitializeGEWorld +(I) [14:17:57.032] [000020844]: Re-winding a compressed stream for file 'data:scenarios\multiplayer\rural_town_4p\rural_town_4p.scenario'. Expensive operation +(I) [14:17:57.954] [000020844]: Regenerating ImpassMap data... +(I) [14:17:58.157] [000020844]: Regenerating SimTerrainCoverMap data... +(I) [14:17:58.183] [000020844]: SimTerrainCoverMap generation took 0.025347 seconds. +(I) [14:17:59.392] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [1661099298]. +(I) [14:17:59.630] [000020844]: Pathfinding::Regenerate()... +(I) [14:17:59.778] [000020844]: Pathfinding::Regenerate() Done. +(I) [14:18:00.157] [000020844]: GAME - CreateGEWorld in 3309 ms +(I) [14:18:00.157] [000020844]: SIM -- Setting SyncErrorChecking level to Low +(I) [14:18:00.158] [000020844]: Loading step: [Load Resources from GEWorld] +(I) [14:18:00.646] [000020844]: Loading step: [Sound Banks] +(I) [14:18:00.646] [000020844]: Loading step: [Session] +(I) [14:18:00.646] [000020844]: GAME - SessionSetup +(I) [14:18:00.646] [000020844]: GAME - SessionSetup finished in 0 ms +(I) [14:18:00.647] [000020844]: Loading step: [Player Setup] +(I) [14:18:00.659] [000020844]: GAME -- Recording game +(I) [14:18:00.659] [000020844]: Loading step: [Scenario Lua System] +(I) [14:18:00.736] [000020844]: Loading step: [Team Colour Init] +(I) [14:18:00.736] [000020844]: Loading step: [Race Precaching Event Listener Registration] +(I) [14:18:00.736] [000020844]: Loading step: [Simulation] +(I) [14:18:00.756] [000020844]: LoadWinCondition: - [winconditions\mode_victorypoint] succeeded. +(I) [14:18:00.892] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [1661099298]. +(I) [14:18:00.958] [000020844]: Player [] killed on game tick [0] due to [unused player] +(I) [14:18:00.958] [000020844]: Player [] killed on game tick [0] due to [unused player] +(I) [14:18:00.958] [000020844]: Player [] killed on game tick [0] due to [unused player] +(I) [14:18:00.958] [000020844]: Player [] killed on game tick [0] due to [unused player] +(I) [14:18:00.958] [000020844]: Player [] killed on game tick [0] due to [unused player] +(I) [14:18:00.958] [000020844]: Player [] killed on game tick [0] due to [unused player] +(I) [14:18:00.958] [000020844]: Player [] killed on game tick [0] due to [unused player] +(I) [14:18:00.958] [000020844]: Player [] killed on game tick [0] due to [unused player] +(I) [14:18:00.958] [000020844]: Player [] killed on game tick [0] due to [unused player] +(I) [14:18:00.958] [000020844]: Player [] killed on game tick [0] due to [unused player] +(I) [14:18:00.958] [000020844]: Player [] killed on game tick [0] due to [unused player] +(I) [14:18:00.958] [000020844]: Player [] killed on game tick [0] due to [unused player] +(I) [14:18:00.958] [000020844]: Player [] killed on game tick [0] due to [unused player] +(I) [14:18:00.958] [000020844]: Player [] killed on game tick [0] due to [unused player] +(I) [14:18:01.476] [000020844]: Loading step: [GameUICore System] +(I) [14:18:01.491] [000020844]: Loading step: [UI System] +(I) [14:18:01.491] [000020844]: Loading step: [LUA] +(I) [14:18:01.491] [000020844]: Loading step: [Game Event Listener Registration] +(I) [14:18:01.491] [000020844]: Loading step: [CPU AI] +(I) [14:18:01.501] [000020844]: Loading step: [Scar Init] +(I) [14:18:01.501] [000020844]: Loading step: [FX System] +(I) [14:18:01.501] [000020844]: Loading step: [Cheat Menu] +(I) [14:18:01.505] [000020844]: Loading step: [Scar Start] +(I) [14:18:01.507] [000020844]: Loading step: [Load resources] +(I) [14:18:01.509] [000020844]: Loading step: [PreDisplay] +(I) [14:18:01.509] [000020844]: Loading step: [Free Loading Data] +(I) [14:18:01.509] [000020844]: PreloadResources took 0ms. +(I) [14:18:01.509] [000020844]: Loading step: [MemShrink] +(I) [14:18:01.509] [000020844]: Loading step: [Flush Inventory] +(I) [14:18:01.643] [000020844]: Loading step: [Resolve Impasse Blockers] +(I) [14:18:01.643] [000020844]: Loading step: [Convert OOB Static Entities to Visual Only Objects] +(I) [14:18:01.643] [000020844]: Loading step: [DefaultWorld Begin Play] +(I) [14:18:01.753] [000020844]: Loading step: [Preparing game] +(I) [14:18:01.889] [000020844]: Loading step: [Start Renderer] +(I) [14:18:01.889] [000020844]: Loading step: [FrontEnd simulation initialization] +(I) [14:18:01.889] [000020844]: Loading step: [WPFGFrontEnd loading] +(I) [14:18:02.337] [000020844]: Loading step: [OnEndLoad] +(I) [14:18:02.437] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:2]" finished loading with checksum [1661099298]. +(I) [14:18:02.887] [000022800]: PerformanceRecorder::StartRecording for game size 2 +(I) [14:18:02.887] [000022800]: GAME -- Starting mission: data:scenarios\multiplayer\rural_town_2p_mkii\rural_town_2p_mkii +(I) [14:18:02.887] [000022800]: MEM -- available page 5359 mb, total page 40074 mb +(I) [14:18:02.907] [000022800]: GameApp::SetState : new (Game) old (LoadingGame) +(I) [14:18:02.907] [000022800]: GameApp::SetTargetState : new (Uninitialized) old (Game) +(I) [14:18:07.017] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=32794fb953938a614bd48d7775c34821a5a0ffe3abcb588ca46b3e7a7339eed4 +(I) [14:18:09.003] [000022800]: Local user framerate is [0.000000] +(I) [14:18:09.003] [000022800]: Local user MinDelay=[72ms], MaxDelay=[123ms], AvgDelay=[112ms], minRTT[89ms], maxRTT[130ms], avgRTT[115ms] +(I) [14:18:15.797] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=aee1facfeb710f64c317caa77ceed61ae333250876f60712671b9f1dfc4deb26 +(I) [14:18:30.012] [000022800]: Local user framerate is [122.643860] +(I) [14:18:30.012] [000022800]: Local user MinDelay=[72ms], MaxDelay=[123ms], AvgDelay=[106ms], minRTT[43ms], maxRTT[151ms], avgRTT[118ms] +(I) [14:18:35.008] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=88/16, mdat=256/512, voip=0/0, rchk=0/0, nudg=3/4, Thdr=0/0, Peer=13/20, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=13/10, lb_p=24/7, lb_c=0/0, cast=0/0, cdat=73/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:18:35.016] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7fdc9bd6080d3312d59f7fceb30c0969833aeaf3a78d95f79b34202b6cdae72a +(I) [14:18:49.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=38/0, mdat=112/224, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=7/2, lb_c=0/0, cast=0/0, cdat=34/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:18:51.000] [000022800]: Local user framerate is [116.788315] +(I) [14:18:51.000] [000022800]: Local user MinDelay=[72ms], MaxDelay=[123ms], AvgDelay=[100ms], minRTT[23ms], maxRTT[153ms], avgRTT[119ms] +(I) [14:19:03.016] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=de201aa5e1b2ff24c9ed8ed956692cfbea5c6301d3de5779d38688627f362046 +(I) [14:19:12.001] [000022800]: Local user framerate is [113.644310] +(I) [14:19:12.001] [000022800]: Local user MinDelay=[73ms], MaxDelay=[92ms], AvgDelay=[80ms], minRTT[22ms], maxRTT[157ms], avgRTT[64ms] +(I) [14:19:19.675] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=bb113efa371ee7d8f126c37d20dae547e523f12213bd503de677709ade281b72 +(I) [14:19:31.138] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=88cd6cdf84999009d06972701c0fa4c933fd9ed2807c4fbebbaf8dc91b34078d +(I) [14:19:33.000] [000022800]: Local user framerate is [115.580643] +(I) [14:19:33.000] [000022800]: Local user MinDelay=[62ms], MaxDelay=[92ms], AvgDelay=[77ms], minRTT[22ms], maxRTT[159ms], avgRTT[58ms] +(I) [14:19:36.008] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=159/0, mdat=376/752, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=24/6, lb_c=0/0, cast=0/0, cdat=150/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:19:38.669] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=052cec9afedae5ed783620eb69949b56f5d374e15e6b598d4b82e0395ca384b3 +(I) [14:19:45.590] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=efcc6d616cd4ffb6254cffb6fe3297310020ba1507d2faf7d31c4c57d1abc1e5 +(I) [14:19:50.006] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=62/0, mdat=112/224, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=7/2, lb_c=0/0, cast=0/0, cdat=51/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:19:52.795] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=86636fc7e0aa62c8b5d63b254f127f32bc18a37b348653f48cbb8a601eaa8b82 +(I) [14:19:54.001] [000022800]: Local user framerate is [113.382988] +(I) [14:19:54.001] [000022800]: Local user MinDelay=[56ms], MaxDelay=[92ms], AvgDelay=[74ms], minRTT[22ms], maxRTT[159ms], avgRTT[56ms] +(I) [14:20:02.926] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=89ce60349c6c28ceabc0bc34e0eb559500666f91d222ffa4722267707f2585fd +(I) [14:20:10.383] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c5649c9989733f4c0c377a4591697130383c0d839ea176661a707fdf0fae5424 +(I) [14:20:15.004] [000022800]: Local user framerate is [114.588539] +(I) [14:20:15.004] [000022800]: Local user MinDelay=[49ms], MaxDelay=[73ms], AvgDelay=[61ms], minRTT[24ms], maxRTT[147ms], avgRTT[56ms] +(I) [14:20:19.382] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f6d37f1d681daa71754f73c0cd87604cd87cfc2ea35646cf5655028a9c2f838f +(I) [14:20:36.000] [000022800]: Local user framerate is [111.972000] +(I) [14:20:36.000] [000022800]: Local user MinDelay=[40ms], MaxDelay=[73ms], AvgDelay=[57ms], minRTT[21ms], maxRTT[181ms], avgRTT[59ms] +(I) [14:20:37.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=207/0, mdat=376/752, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=23/6, lb_c=0/0, cast=0/0, cdat=195/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:20:39.015] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a05660eed1a50e77e9af7b0cedede3125a88d09ecb4ae4cc882dfa351d23efc0 +(I) [14:20:42.822] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=71c3b642ed7ae8de12efef9c9510718fece8782cfd3f0c106392080aaf589554 +(I) [14:20:47.590] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8744ffad1edd53213e5c31230cafe03aea36249dc6ee1f13301c6aedcf1286cc +(I) [14:20:51.005] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=54/0, mdat=112/224, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=7/2, lb_c=0/0, cast=0/0, cdat=50/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:20:57.008] [000022800]: Local user framerate is [111.144424] +(I) [14:20:57.008] [000022800]: Local user MinDelay=[39ms], MaxDelay=[73ms], AvgDelay=[55ms], minRTT[21ms], maxRTT[181ms], avgRTT[62ms] +(I) [14:20:58.929] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3b55ad296474ad358bf61d3abb0dc48d0e249d8cb457b25a6393419d00cbd41a +(I) [14:21:05.456] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4dc5176f0f699c908b738c6114d1a8b5547a0c80764f645dbde83709c700682b +(I) [14:21:06.825] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a7ea098730095af27252c467fbb2905425e55198ddbf0e66e7041529a28b1579 +(I) [14:21:08.699] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=312502ff594ffced1cb2f7c6ac83a1a51bdf9402836fd1a9afd077a61b98476e +(I) [14:21:10.948] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=eb81df602c8ddba08a737d972f4788f0864732ee15f08a0029f7c57916cbbf74 +(I) [14:21:13.201] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5679d81d2856ae388ed13d8b3ac3376cd126a9a896f5609d8cb9998969b8cae2 +(I) [14:21:15.214] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=949501fb440d803d38d841d6a66875180838c420d016903a4316a3437914dcfa +(I) [14:21:18.003] [000022800]: Local user framerate is [112.716179] +(I) [14:21:18.003] [000022800]: Local user MinDelay=[37ms], MaxDelay=[66ms], AvgDelay=[52ms], minRTT[27ms], maxRTT[190ms], avgRTT[66ms] +(I) [14:21:21.580] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=dafa9218ff09f0626d08eed90d83b6ecc2c443907515f977cfb25a2dcfafd0be +(I) [14:21:23.832] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=73c2f2c028ab34664bba6e12a9ded18257536717b3f05d8a7d8fed190971db59 +(I) [14:21:25.463] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7c7eb7d4bfd05c427608d20da0c9853a1e7c655c213503899481a95176e54de5 +(I) [14:21:27.707] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5ed6fbf198829080162061616be12d68938b567802944b4c5525e7bddc8ac0a4 +(I) [14:21:38.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=181/0, mdat=376/752, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=23/6, lb_c=0/0, cast=0/0, cdat=169/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:21:39.002] [000022800]: Local user framerate is [110.788918] +(I) [14:21:39.002] [000022800]: Local user MinDelay=[37ms], MaxDelay=[67ms], AvgDelay=[53ms], minRTT[27ms], maxRTT[190ms], avgRTT[66ms] +(I) [14:21:40.594] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a8575bb7fd1de092d6147e852d1aea1ec76964b274cc2d3421c272d7e6228034 +(I) [14:21:49.274] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=087652b0438be16e428826822cb3edccc5544f22f829985a0a372b4057df6a74 +(I) [14:21:52.008] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=46/0, mdat=111/222, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=7/2, lb_c=0/0, cast=0/0, cdat=45/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:21:53.652] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=174f1c456f90ef601e77f0db317f270da119941a663d937f2a0f31ddf7eeb722 +(I) [14:21:56.438] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=74dca0b23309faabd57157b872dfb76b79225a4cb5845c59e10f43f67b48bde3 +(I) [14:22:00.005] [000022800]: Local user framerate is [110.816750] +(I) [14:22:00.005] [000022800]: Local user MinDelay=[37ms], MaxDelay=[67ms], AvgDelay=[52ms], minRTT[27ms], maxRTT[190ms], avgRTT[69ms] +(I) [14:22:02.958] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a892040bf02a5d4cd53d7adbbe339f0d48f4e859b736d845a7851954532462db +(I) [14:22:21.000] [000022800]: Local user framerate is [107.257088] +(I) [14:22:21.000] [000022800]: Local user MinDelay=[42ms], MaxDelay=[71ms], AvgDelay=[55ms], minRTT[22ms], maxRTT[145ms], avgRTT[53ms] +(I) [14:22:22.017] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4501f92865b1843ee9860d9db253f9a73dcf152d1275aa2b3d80d118d8b2af79 +(I) [14:22:32.648] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=957d1839e5c79c6a9efbac6fb1caa4480c2bfac9344638c12ed46a17798de325 +(I) [14:22:37.639] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9ce60d730ee9dde9685e411fdfbc9a14463813a669aa79c0160c659805825317 +(I) [14:22:39.005] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=224/0, mdat=376/752, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=24/6, lb_c=0/0, cast=0/0, cdat=203/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:22:42.002] [000022800]: Local user framerate is [101.029785] +(I) [14:22:42.002] [000022800]: Local user MinDelay=[40ms], MaxDelay=[71ms], AvgDelay=[54ms], minRTT[22ms], maxRTT[145ms], avgRTT[56ms] +(I) [14:22:53.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=62/0, mdat=112/224, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=6/2, lb_c=0/0, cast=0/0, cdat=60/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:22:53.993] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c90a0e2a30806188d2ce5aac8ba276d66620da9e525bce63d542a67620a9bada +(I) [14:23:02.961] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d5ed58174efe06c79259a8c2178df61f1720a0395ca541f2ecef19ca281d2c29 +(I) [14:23:03.011] [000022800]: Local user framerate is [102.144882] +(I) [14:23:03.011] [000022800]: Local user MinDelay=[62ms], MaxDelay=[62ms], AvgDelay=[62ms], minRTT[4294967295ms], maxRTT[0ms], avgRTT[0ms] +(I) [14:23:12.289] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4280e9e46af7ecc7df6cab0e03ee53df8956ecd38c7b55f964e66804e8420d4d +(I) [14:23:23.783] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=02177b83576af4da40f21901b77881106fac4ed9a94069ef8f916c1f53c34664 +(I) [14:23:24.016] [000022800]: Local user framerate is [106.018188] +(I) [14:23:24.016] [000022800]: Local user MinDelay=[34ms], MaxDelay=[62ms], AvgDelay=[50ms], minRTT[37ms], maxRTT[143ms], avgRTT[66ms] +(I) [14:23:35.409] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3e95757f4b58271900e7c73cabfa15caead3489a96ceae58ba31dbb127729be2 +(I) [14:23:37.290] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=943c83be7b3d970c32bd17d5019f2672f900f84640ffcd2695fc64f1bc563950 +(I) [14:23:39.671] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=76843c7107639ff3ac8e984fd6a3d37ea9840352ac050554fec3b3182874cd01 +(I) [14:23:40.009] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=166/0, mdat=376/752, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=24/6, lb_c=0/0, cast=0/0, cdat=152/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:23:42.677] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3f7e612ef53e5bd2dc8db3becacc08b367a5d92b6e12e509c43104dba0131753 +(I) [14:23:45.003] [000022800]: Local user framerate is [108.206711] +(I) [14:23:45.003] [000022800]: Local user MinDelay=[34ms], MaxDelay=[63ms], AvgDelay=[50ms], minRTT[32ms], maxRTT[143ms], avgRTT[63ms] +(I) [14:23:46.806] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a3bf9e69d57899649ab6e2b3341cfa1f86f27720b3a782d2835cb324693df010 +(I) [14:23:48.296] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=398489ad698059c19a6074e7da8c1ef0490b92bce93c15aaa27be13a13f168df +(I) [14:23:50.185] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d50e115931ed7a3580cca9088dfef508e1f2dc16a59b42110e7fc608788da2c4 +(I) [14:23:52.428] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8940c0a4886273daf5ba6f46b0a9da14272cadd1943c1a1b124bf8af14a7ce71 +(I) [14:23:54.009] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=74/0, mdat=112/224, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=7/2, lb_c=0/0, cast=0/0, cdat=72/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:23:54.558] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e7d4e50664fcedb3ce20903e9e86753fa18b5d4dd74a2cad2bc024996fc97e43 +(I) [14:23:55.843] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a28a753e6020bb581b54157f4137bae7ba636f3c9f4a5e3ef516d562adadb046 +(I) [14:23:57.439] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=55c5494e857d9d01410c8bd8321756867857e84fb48c26d6c3742c91ed90d5df +(I) [14:23:59.121] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b44bf5b898300af58e214496b9c28d8a5e4d9384944f3f9b69ec111074fd8082 +(I) [14:24:00.428] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f6817df065351119fab4dcb2715566726f41929cd74f7ecfb023e93b36b24ad6 +(I) [14:24:05.190] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=aa04c85c31df95d2caa19a2809eda3b76c78a79a66dca814aea0ab46d813f539 +(I) [14:24:06.001] [000022800]: Local user framerate is [102.764023] +(I) [14:24:06.001] [000022800]: Local user MinDelay=[43ms], MaxDelay=[63ms], AvgDelay=[52ms], minRTT[22ms], maxRTT[104ms], avgRTT[58ms] +(I) [14:24:09.822] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d620545fd15d62177c20d1d3cf6e80676db047f1b180dee82fcab2e853e2a34a +(I) [14:24:20.857] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d769e9c42e7324bc115a9bea5c9d144905172291e72b1c1f59f350daeefb42c1 +(I) [14:24:26.828] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=748a0cb55761f4fd1147a2b3a0d94c3b03f4f70c00ef413b4dd8323cf151ba05 +(I) [14:24:27.003] [000022800]: Local user framerate is [101.029785] +(I) [14:24:27.003] [000022800]: Local user MinDelay=[37ms], MaxDelay=[70ms], AvgDelay=[55ms], minRTT[22ms], maxRTT[180ms], avgRTT[62ms] +(I) [14:24:41.008] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=219/0, mdat=376/752, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=23/6, lb_c=0/0, cast=0/0, cdat=196/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:24:42.358] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d5ada1c28b7185dffdbfa2789d00623adccbe6d9490b556e8791b8452db3e9d0 +(I) [14:24:48.009] [000022800]: Local user framerate is [105.094742] +(I) [14:24:48.009] [000022800]: Local user MinDelay=[37ms], MaxDelay=[73ms], AvgDelay=[56ms], minRTT[22ms], maxRTT[181ms], avgRTT[61ms] +(I) [14:24:50.571] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=afd44f958fffed9ac3bf502ce54bce983984873185df65dc1580518b702c910d +(I) [14:24:52.171] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=204e5770e226ec878ebaa53b7b8182f05699af1309f1b25d4005af6a443bde85 +(I) [14:24:55.004] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=93/0, mdat=112/224, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=7/2, lb_c=0/0, cast=0/0, cdat=82/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:25:01.786] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=23677fa70f3bfe81cb0510b4ed322143b80664509266eba1bc8b88afaaf7e8cf +(I) [14:25:09.002] [000022800]: Local user framerate is [101.374649] +(I) [14:25:09.002] [000022800]: Local user MinDelay=[43ms], MaxDelay=[64ms], AvgDelay=[55ms], minRTT[45ms], maxRTT[143ms], avgRTT[63ms] +(I) [14:25:09.703] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b3a46a3bc743073de056b28cc46298fefdd65f5f2b652db1b1a264f308bb69a0 +(I) [14:25:13.230] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c4fea542cc334a92ed62d70d01454d360e4f38f99d46bc252164e953716f1385 +(I) [14:25:16.858] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7a1a90e890a24e2e6d0c78df8da8d59514087b82c289fb27813c7653ec2e6300 +(I) [14:25:21.706] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ee6bc3adc97a4213aa0ccd767fee9653a7536d2d68b5987edd9019ff4afdcd62 +(I) [14:25:25.703] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=07c6df73d91f989b7fd0c7f6dbfa43c6f97847fe59b8a6e01abb4cbfcea70bb9 +(I) [14:25:29.061] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=edfe2fb92df7af2e644a5e17d572f149e01b3acfac629600b7f3acdec8bb7813 +(I) [14:25:30.007] [000022800]: Local user framerate is [99.180153] +(I) [14:25:30.007] [000022800]: Local user MinDelay=[41ms], MaxDelay=[65ms], AvgDelay=[54ms], minRTT[26ms], maxRTT[178ms], avgRTT[69ms] +(I) [14:25:32.734] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cbec8f1a9f6b28c7a365259307673450a48d38fd036515d18ccb9bf53dd0e5b6 +(I) [14:25:40.861] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=da911ad05e51c3f16af83f8f5ac4bad9ce82c2f9efbde570cc6bfd55eace377f +(I) [14:25:42.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=207/0, mdat=376/752, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=24/6, lb_c=0/0, cast=0/0, cdat=191/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:25:43.118] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a3f3cde1b6ee1366c7ad23b6aa1ea67be8e9a66ad53c155fcd1d9094c3e177a5 +(I) [14:25:45.088] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=10a3b88b8561f6601f90d2d9f05807f7d18a10bcbdfe3c4e4e4b5ed02ce687cf +(I) [14:25:46.747] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6fc218ba70314957f0602a998176887f17bd311582c1286db37f93f9d7bbce1f +(I) [14:25:48.250] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9095b8af6d886ed36be0909a3d0027f6da05bd5f8d4810d492ea636d0ef5e2f2 +(I) [14:25:51.002] [000022800]: Local user framerate is [103.034546] +(I) [14:25:51.002] [000022800]: Local user MinDelay=[41ms], MaxDelay=[69ms], AvgDelay=[54ms], minRTT[26ms], maxRTT[188ms], avgRTT[69ms] +(I) [14:25:55.999] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4eba895e0899ef57d1a5a03bdd6927901b36a7ed021332ca732aaa21dd0e69ab +(I) [14:25:56.001] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=60/0, mdat=111/222, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=6/2, lb_c=0/0, cast=0/0, cdat=55/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:26:12.005] [000022800]: Local user framerate is [102.319298] +(I) [14:26:12.005] [000022800]: Local user MinDelay=[47ms], MaxDelay=[69ms], AvgDelay=[56ms], minRTT[33ms], maxRTT[126ms], avgRTT[52ms] +(I) [14:26:12.342] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fd75fe287e987cb4ba7f5ba868e6a829f3ecd5b78b660198c83f20055145a309 +(I) [14:26:16.509] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=006f013944a8e93aa506765780e563c7ab057aab5ddb90d7cf0c4b9787c75740 +(I) [14:26:18.013] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2f3cc5afe920d66ca1c4fea15b57dc62de73be20102aea7525f3849b101a5d51 +(I) [14:26:20.204] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2ff30c5c7038dc697ad574cede372f41618c1783a927d8c4e0a302b7f179e4eb +(I) [14:26:25.519] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=73eaa725629df30de83636e6c21080569e55ae2e494a7df9a273a600dff39282 +(I) [14:26:31.908] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fec7c7f7ab8f6ea402dcc10b2749540b078f58f681c50922b04c25b2101c1984 +(I) [14:26:33.008] [000022800]: Local user framerate is [99.720085] +(I) [14:26:33.008] [000022800]: Local user MinDelay=[44ms], MaxDelay=[74ms], AvgDelay=[57ms], minRTT[22ms], maxRTT[151ms], avgRTT[56ms] +(I) [14:26:34.501] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c3c8705ca2da8cbf61e4ede55e86800adc959f49728b4c81a7c1181e8cb767cc +(I) [14:26:41.471] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5fd4919343eddbb3b4855963bec56960dfbd9ecb28dd940a4cd64789dbb9d5ec +(I) [14:26:43.010] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=233/0, mdat=376/752, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=24/6, lb_c=0/0, cast=0/0, cdat=209/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:26:48.824] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e8ecca33ab001ae1d4666337c77eee31e6d28644242e9c408e6cf5ebd2cc0de9 +(I) [14:26:54.019] [000022800]: Local user framerate is [95.485680] +(I) [14:26:54.019] [000022800]: Local user MinDelay=[44ms], MaxDelay=[79ms], AvgDelay=[58ms], minRTT[22ms], maxRTT[153ms], avgRTT[59ms] +(I) [14:26:56.860] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f26c46c55b59c19fa0332d4e22e8e2199e3543bf7a8f8fabe29996ad63c8a1a6 +(I) [14:26:57.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=48/0, mdat=112/224, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=7/2, lb_c=0/0, cast=0/0, cdat=45/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:27:03.484] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4c8b9267c88639da30469657f6af43a8983ba934a35c8ae97eaa422f1f4b8399 +(I) [14:27:08.301] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a8cdb93b0322448ff115c76eb72ff715666f281525b2a329d652e9665d0f595a +(I) [14:27:15.014] [000022800]: Local user framerate is [91.281738] +(I) [14:27:15.014] [000022800]: Local user MinDelay=[42ms], MaxDelay=[74ms], AvgDelay=[62ms], minRTT[24ms], maxRTT[144ms], avgRTT[62ms] +(I) [14:27:17.666] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1fd738ea7af6a43dd25e6c44c644ac6bfd69478344b6f149dbf5ddcaef6e40d5 +(I) [14:27:19.919] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=30b929836cd710fe55d706007917c8b15819981279a0d34d7ff6d5f85b1c17a9 +(I) [14:27:23.050] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c4e968cf4b7a252bff621fdeb8ec9bb7949f34e5a0686f254840409c7f70cfdc +(I) [14:27:29.212] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2065575f2568ec6115a65b81903e510fbbf76d3f1353eb338eb946b47585c10d +(I) [14:27:30.162] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=adb348f15d0062c6a861520d408cfe5abcdbaf878a4917d2d226f08e664e01d4 +(I) [14:27:33.148] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7f87a135e280e8bf0fb0b7908fa1d5ff1f7fcce9bec0fd77d8ce54f071d058b5 +(I) [14:27:36.023] [000022800]: Local user framerate is [95.690430] +(I) [14:27:36.023] [000022800]: Local user MinDelay=[42ms], MaxDelay=[79ms], AvgDelay=[64ms], minRTT[23ms], maxRTT[161ms], avgRTT[59ms] +(I) [14:27:44.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=168/0, mdat=376/752, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=23/6, lb_c=0/0, cast=0/0, cdat=162/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:27:47.291] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4ca3d8861bfec8d4937f97f67c582281cc5b33d5c0cd578c0971462123352e1c +(I) [14:27:49.413] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b100af5a8161bcb1c89e8d9c4644d988a1ce5aea3a2d65d1576632cf69eece3f +(I) [14:27:51.666] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6b26ff5108fa04c673431b429e86a515280579adbbbc151ca856705ae5db9096 +(I) [14:27:52.928] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1026afdf06ddcd27ffc6510457dc2f921949fd95bf834964f17f0a3d48062fb7 +(I) [14:27:57.002] [000022800]: Local user framerate is [102.009186] +(I) [14:27:57.002] [000022800]: Local user MinDelay=[42ms], MaxDelay=[80ms], AvgDelay=[64ms], minRTT[32ms], maxRTT[152ms], avgRTT[68ms] +(I) [14:27:58.006] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=47/0, mdat=112/224, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=7/2, lb_c=0/0, cast=0/0, cdat=44/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:27:59.073] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=73bf6bbab2118a94dacb9e131a84f5f8aa5f03c4e04bf3e63d6b9db278e91f2d +(I) [14:28:06.671] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=24abbe86621a1a83d8a8c878735a2ceed8a9f5c936f610397ff095b9c8aead1c +(I) [14:28:07.843] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3518e6bcd335510c3f8afb3e33e86f2dd20706d1f15207b4cfa3e49dbe12d66a +(I) [14:28:09.543] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0f0cd61eadd962bd5ca362ac70dcf7a8132d7a42618c584b95e43de9d2b4dff7 +(I) [14:28:10.550] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d94b78bd8bb7a85c7c6c5a1c085836659f33a9ccad7fb1b42db2fa24db017236 +(I) [14:28:12.553] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=91e8d444eb4c1cfcba07a57b987bde3c061258d2d57e5dbba4106a4b07ad18b3 +(I) [14:28:14.299] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=18f0c1bf4245433a2db9d9243a62b1a502f654c171aefec8f6bea5fbaa48fff0 +(I) [14:28:18.002] [000022800]: Local user framerate is [101.024742] +(I) [14:28:18.002] [000022800]: Local user MinDelay=[46ms], MaxDelay=[79ms], AvgDelay=[59ms], minRTT[29ms], maxRTT[162ms], avgRTT[55ms] +(I) [14:28:21.402] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=58caea6042fe44c25ea8632bff172fcbe32e43c1a9bfbb2a2375615d394055c0 +(I) [14:28:24.816] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=42b8c0862be14c181e4c0d24fb7f1cf35506529ee0720e389c50472e551511d8 +(I) [14:28:28.002] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8820ffc7e0e5df6b98cb3d0baf368b7d74b34620d3405a248b7daf1a9de98b72 +(I) [14:28:30.188] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9674d3754669390167934825e4adae128850c1ebe4bb0128ac6b72185cacc587 +(I) [14:28:33.828] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3a56f1460c101a6a996a1c6bdc60b58ed61c9032345583132e255b74b67ebc95 +(I) [14:28:39.002] [000022800]: Local user framerate is [102.038773] +(I) [14:28:39.002] [000022800]: Local user MinDelay=[41ms], MaxDelay=[84ms], AvgDelay=[58ms], minRTT[22ms], maxRTT[162ms], avgRTT[61ms] +(I) [14:28:45.005] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=183/0, mdat=376/752, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=23/6, lb_c=0/0, cast=0/0, cdat=168/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:28:47.252] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3568003ba86497ead8fb085517f265689198d7eaba541b8900ffb74a35794b24 +(I) [14:28:51.203] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cbde5704e513bd681bd9691dd624886cccaf266fef633745242ca44d6aec05fc +(I) [14:28:52.737] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=93c396a80d5cafbeaf6928a27b99d62ce6f97b9aa3fca353e8f3953d80758339 +(I) [14:28:54.200] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=00d4f98857e2b57d208929c8a159c0250b90fb28a0219a42ded661db63b596de +(I) [14:28:56.453] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=81f91ba2767491228bae25545ad39f04f8a99864910969bf6e9c718429c2037d +(I) [14:28:58.701] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=03ae6808581ba19e675d0ece0e2474997900c8023c3b3c947d0a441bde25eb68 +(I) [14:28:59.009] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=57/0, mdat=112/224, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=7/2, lb_c=0/0, cast=0/0, cdat=48/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:29:00.000] [000022800]: Local user framerate is [94.540543] +(I) [14:29:00.000] [000022800]: Local user MinDelay=[41ms], MaxDelay=[84ms], AvgDelay=[57ms], minRTT[22ms], maxRTT[175ms], avgRTT[61ms] +(I) [14:29:03.214] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=01b5288c294898f2b87a752798ea4a2c4606626f500a1e1fd21018c60247ad81 +(I) [14:29:04.102] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b1241f748481fbd9c2e0b6f5e2ebff9022c5070f00911a58f97ba17bfd73e1d1 +(I) [14:29:05.580] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4edaed04f05ab4e695e00c350c0bd615520701369cb9c9dbd8093831a01069fc +(I) [14:29:07.333] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=bb3782d41eed16056ce92aa30613c45a62c3e14011d504b8fbb9cd967fd2a4c4 +(I) [14:29:09.221] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ea07059095e044d4183bdd8e2d4c0fe623fd05e613a2f01249c853d0835bb873 +(I) [14:29:11.342] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ba142bab7e1f4b5a92e0490e7759997a67dcfc86c0e3ec4ae60f15f35d027c22 +(I) [14:29:13.477] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2aa9bb2144cba4d6839f7d29a6acbcb2db2d93d4df54dc5c693dbc542dbf3cc5 +(I) [14:29:21.003] [000022800]: Local user framerate is [94.674255] +(I) [14:29:21.004] [000022800]: Local user MinDelay=[41ms], MaxDelay=[81ms], AvgDelay=[60ms], minRTT[28ms], maxRTT[176ms], avgRTT[57ms] +(I) [14:29:24.552] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9329c47fb08dc3cb4a464b8cff09dbf146f92e29e04129c49e1ccf690703e3ab +(I) [14:29:30.976] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5ef876cf09fd6e001296309fd37053507f5abdd7c7569279a1020da0d867c632 +(I) [14:29:32.718] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=81df797aa9e9a7e693d1863085215e30e18046eb29ac58b94f47834b60de8a62 +(I) [14:29:36.447] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9a98ced1b06b7107759ee26463f567bea307a9b9bd924ac75352608e8a765b0d +(I) [14:29:37.345] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cb88486231f4373883a238ef93325b690e067dd286ff9ccebaa9770432e7e853 +(I) [14:29:38.594] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=94033315c9bf717a375afcef759dfe64fd0a352ec942570402c004deb23c1ba6 +(I) [14:29:40.696] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6f4dd4def38f2ad3121087c73f5bc5989f2a5611b698dcaa2409c18afbd4cab3 +(I) [14:29:41.850] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=92fd46b3952d7032f2063e76955164a9e780bffeaa6d75b9509fda2a945295ca +(I) [14:29:42.008] [000022800]: Local user framerate is [97.025742] +(I) [14:29:42.008] [000022800]: Local user MinDelay=[41ms], MaxDelay=[81ms], AvgDelay=[60ms], minRTT[23ms], maxRTT[176ms], avgRTT[64ms] +(I) [14:29:43.977] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3d33e2ae7624714463bbb72acd46074a7657c6f17638d1ee00f0cefe3a63be21 +(I) [14:29:46.003] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=189/0, mdat=376/752, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=24/6, lb_c=0/0, cast=0/0, cdat=167/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:29:46.220] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f7a647a992d5d66f2984d607788a062a8552042ae69982fae34bcabed6f0016f +(I) [14:29:48.461] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6bf28c8baa6aa3527747dece9c7d76565ef85bf9f30fc82e638966de84e2b47d +(I) [14:29:49.983] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b898131742a758d695c8e0d632fd0e451817245374997dd48493793a029c90fd +(I) [14:29:52.099] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8da59ffdc93a799e35312b97cee0e6ef7c739718d972d6f165506ed8aedfbe8f +(I) [14:29:52.907] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a6b55dc27624f95b0ad47d392f3263002ae1f05dbc5cff3b2c2643d5627905ca +(I) [14:29:54.844] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0e0e96754038dda14718f94b811075ff3f97c54db57306b3ceb3dd21a1c03008 +(I) [14:29:57.105] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c5379c7d00e6368ffce7bd20305427052fc3a165ec276b9cf3a2fcac87671e42 +(I) [14:29:59.234] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e81a8bf22be8b22d6c60d325897682623b5bdbe77c3ece0c5ef73b1f4313550a +(I) [14:30:00.009] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=60/0, mdat=112/224, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=7/2, lb_c=0/0, cast=0/0, cdat=54/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:30:03.003] [000022800]: Local user framerate is [100.189880] +(I) [14:30:03.003] [000022800]: Local user MinDelay=[-1ms], MaxDelay=[0ms], AvgDelay=[0ms], minRTT[4294967295ms], maxRTT[0ms], avgRTT[0ms] +(I) [14:30:05.357] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c968e043ead3ab375d3f51e71f7c82659490683212c1e7bee25fb56feb1ce181 +(I) [14:30:13.232] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=94d98fd4394f3eeb04c2d6f5db059bc27b4a6de55793e9ba3bcd7d56b0a82caf +(I) [14:30:17.498] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8534e02f2c5aa7190bf4af7235b7b97b0829702cd49421d63e526895a86722fe +(I) [14:30:23.424] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7dc78a68313730c34a4c7e27079dc2db0dda6837434b842126ee0b1ff1257e38 +(I) [14:30:24.003] [000022800]: Local user framerate is [94.805191] +(I) [14:30:24.003] [000022800]: Local user MinDelay=[45ms], MaxDelay=[73ms], AvgDelay=[58ms], minRTT[21ms], maxRTT[187ms], avgRTT[67ms] +(I) [14:30:32.914] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=52f715c890bce26ef5581a17f5794b252f4d132ecb20823dd183f0e258cde7a5 +(I) [14:30:37.141] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=711ae4a9db041a22c597102a8392d08eead83a5265185a7b38640c0dd81f7fd8 +(I) [14:30:41.000] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=dc01e9e55fbd8ffef57a665c8d3e9a19d26939f64b01648d80e129566e3b3730 +(I) [14:30:45.003] [000022800]: Local user framerate is [96.595161] +(I) [14:30:45.003] [000022800]: Local user MinDelay=[44ms], MaxDelay=[76ms], AvgDelay=[59ms], minRTT[21ms], maxRTT[187ms], avgRTT[67ms] +(I) [14:30:45.826] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=28b0576f990b2c085898352a1e14fe565902fa67df758b0ac57bdb6e98dfb555 +(I) [14:30:47.003] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=187/0, mdat=375/750, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=24/6, lb_c=0/0, cast=0/0, cdat=170/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:30:50.884] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=09fad61c27d1c56db0688c592766ccdeff499fc68784b30175907a1d770adf6f +(I) [14:31:01.001] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=61/0, mdat=112/224, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=6/2, lb_c=0/0, cast=0/0, cdat=56/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:31:06.002] [000022800]: Local user framerate is [97.865738] +(I) [14:31:06.002] [000022800]: Local user MinDelay=[56ms], MaxDelay=[75ms], AvgDelay=[62ms], minRTT[36ms], maxRTT[51ms], avgRTT[46ms] +(I) [14:31:07.240] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e1ad6a86388bbbcf736893a82c357c8695db5eab8883617b22d3ffd72d282f2e +(I) [14:31:13.875] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=89e34c7510f3d5d2f0287848e84a2e8f39c2e7dbb1d84f8472099241abd76df1 +(I) [14:31:15.881] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a6ec5175ba0abf07516369f208ba967db4d658234d0878e6d8136fb8717f5851 +(I) [14:31:18.127] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9823363b3b03184467bc89f3aff2dd82b5ad696ba20e5fb919b57398c7aaf927 +(I) [14:31:20.380] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e0d24bad6d70156c288e41c6e82fc541d527149a350a75cc9c5efc807068ee77 +(I) [14:31:22.639] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2bad3432a2577e6f17366fe94c29734afde9b0e10aaabf5a3225bc4980edc958 +(I) [14:31:25.334] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a7968fa1ace741b9cb5085482ada5cdd70ddc7a2e08d78749d9597dcc721896c +(I) [14:31:27.007] [000022800]: Local user framerate is [105.886459] +(I) [14:31:27.007] [000022800]: Local user MinDelay=[51ms], MaxDelay=[75ms], AvgDelay=[61ms], minRTT[27ms], maxRTT[189ms], avgRTT[56ms] +(I) [14:31:29.271] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5f650bb8c8d869aa905b10aadbf1573c3ad984d1d7e9724df78d427cd5398d63 +(E) [14:31:36.435] [000022800]: TelemetryRow::addString : Key: (ability_name), Value (35) is larger than Column (32) +(I) [14:31:39.209] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=04750f4b6dee898654e847a791cebc8865ddbf806f932a79105651ddaf42d304 +(I) [14:31:42.513] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=be1213c3dd3b906f6b493de5394d7bf9c54eb12920d3ebad729bcfe60004817f +(I) [14:31:48.001] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=188/0, mdat=376/752, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=25/7, lb_c=0/0, cast=0/0, cdat=175/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:31:48.002] [000022800]: Local user framerate is [100.429909] +(I) [14:31:48.002] [000022800]: Local user MinDelay=[44ms], MaxDelay=[75ms], AvgDelay=[60ms], minRTT[27ms], maxRTT[189ms], avgRTT[55ms] +(I) [14:31:56.522] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f1b1c5c4e8ffc223e23e57f473b09bc3e4d421ceeb4c12effaa14aaa5c3cee23 +(I) [14:32:02.008] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=74/0, mdat=112/224, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=5/1, lb_c=0/0, cast=0/0, cdat=67/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:32:02.225] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a3985f3d41019828014c68f0d7fd36854013d97f6ec1fd995856aca7f2079047 +(I) [14:32:04.599] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=275eee400c11b85505a06dfa539ca432d97dbb0f2e114d69bfab87f5d9c91734 +(I) [14:32:09.015] [000022800]: Local user framerate is [96.920921] +(I) [14:32:09.015] [000022800]: Local user MinDelay=[47ms], MaxDelay=[76ms], AvgDelay=[60ms], minRTT[36ms], maxRTT[152ms], avgRTT[60ms] +(I) [14:32:09.268] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=14ac3e9b24ebf9851b70ff86e8ef7b40062c65ed27fee3a6e0dbfd7fcdf6ba84 +(I) [14:32:14.005] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cca172f0ac06b863bb5247c46752ce988a21770e0cb1733ce5dc2526dec60831 +(I) [14:32:18.136] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d40a4a119a326748609f82369a5f2e977a20d8f93bff90beb26408c649281691 +(I) [14:32:21.448] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f754961afb00127f45da7da3b40b0ce7ce5373a92a8ea29dbcc91456e66c651d +(I) [14:32:22.166] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=64820f493a1b0b5780da205726397c52b667e9bd50fa2bd714853d004af8f936 +(I) [14:32:22.678] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=52e890966db917a2d604f732674e81147b94fe8a31a3374b965880ea4cd5b14a +(I) [14:32:27.356] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9842a910bb8528d822fee6f5ddbab6cece5a6e5f5650f5663b4de0c75fb63e74 +(I) [14:32:30.004] [000022800]: Local user framerate is [88.868889] +(I) [14:32:30.004] [000022800]: Local user MinDelay=[43ms], MaxDelay=[83ms], AvgDelay=[60ms], minRTT[24ms], maxRTT[168ms], avgRTT[61ms] +(I) [14:32:35.474] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=db655af437b4b090f4a723ecf67f3a4b25dd0aedc95c7ac60ebc4b73c323c2fb +(I) [14:32:36.602] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9e6903b34777f36e3b5d016d8add25c581da9a637932b482b4fa8eeb62330e02 +(I) [14:32:38.241] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f8fcd7e6ad0ee0399a9d7908a3279ee0c86664ec225f61637b1f431b86fc108e +(I) [14:32:40.815] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fc3ce519e52a51ebbbbae5bdb90018039107c6a583b6a13bf09e418569c2ea06 +(I) [14:32:43.528] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b741c827793e4c05bd2dccbcf496164f8dd6c869d813f96bbd36ca8d381f20d3 +(I) [14:32:44.828] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=667b8380e0e2a98974205b558d3c2b0984339a00d89dd5d598245043e5018151 +(I) [14:32:49.008] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=231/0, mdat=376/752, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=25/7, lb_c=0/0, cast=0/0, cdat=210/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:32:49.477] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=68fa918d56d35ba31015892b4936d9fd69b9f2e638a3351106f608f8f8c940df +(E) [14:32:50.910] [000022800]: TelemetryRow::addString : Key: (ability_name), Value (35) is larger than Column (32) +(I) [14:32:51.004] [000022800]: Local user framerate is [85.757118] +(I) [14:32:51.004] [000022800]: Local user MinDelay=[43ms], MaxDelay=[83ms], AvgDelay=[60ms], minRTT[23ms], maxRTT[168ms], avgRTT[63ms] +(I) [14:32:51.065] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ee89a4627785456eb3e65d116f3d6ada9b3a87cfa7931792dac00cd724e92a2a +(I) [14:32:56.708] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3b1d30b55e457ec9097faff3380ce75004fccc9a03e049e6b3a1f07709891043 +(I) [14:32:59.182] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d3ea4bd2f3b0c553587470cc40150b5b6cf96f83c3b963332c3c0aaffb7864ac +(I) [14:33:01.822] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3297c75954d5c6b9bb26ee7923e086edd4f04a5dfd6f5cc787e6390eedcfb2d8 +(I) [14:33:03.008] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=54/0, mdat=112/224, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=7/2, lb_c=0/0, cast=0/0, cdat=50/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:33:06.947] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=dfd4a1e49271b2f546b941d0a955bc7a4ea57a3f46428f0fade04816c3b2cef7 +(I) [14:33:09.691] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=584ec91b022f19e52dfceb7fd31e2e6b3893291ce67c3b1c1c2fa792df0d6a40 +(I) [14:33:12.003] [000022800]: Local user framerate is [89.855072] +(I) [14:33:12.004] [000022800]: Local user MinDelay=[45ms], MaxDelay=[74ms], AvgDelay=[63ms], minRTT[23ms], maxRTT[171ms], avgRTT[69ms] +(I) [14:33:12.887] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=71184ff16710b6d1af4635acfd3869ab2586a8c5da3c4fee73f5ed11508f86e8 +(I) [14:33:19.069] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5a2caec4fc422aba40fe5cf9fede3e44ae694adbcb774edc86b7f06432bcf028 +(I) [14:33:21.188] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ddf1140478e0c08461b400b2710cda7952e609c2105723e3bf08f56b802054a0 +(I) [14:33:24.169] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=858054e7b9b7cf3e33225eb456e1e3f25ee309a4a9de583e25f4585420fe4f5b +(I) [14:33:25.953] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=664bae294ce408a1323a9067fec8556e604fb506d9704a602014176aaeb40611 +(I) [14:33:27.076] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6e378154cca68e2f79ed9e670635f4f001886d809300b7d0e2151844f3afcfec +(I) [14:33:28.578] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c3bf02f99aea503163155483a88631df4b43b15d9e381eb96d9386db1b9f1da8 +(I) [14:33:30.206] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f17134a0b80a62657f3e4e98aeada1df65cc8cf29d5883cae3363b0621a59af3 +(I) [14:33:31.579] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=52ad0af12e4040838217f84d08c9a52b74196fc634923f8d57924be91f3d1dcc +(I) [14:33:33.006] [000022800]: Local user framerate is [94.771568] +(I) [14:33:33.006] [000022800]: Local user MinDelay=[43ms], MaxDelay=[76ms], AvgDelay=[63ms], minRTT[23ms], maxRTT[171ms], avgRTT[61ms] +(I) [14:33:33.337] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7deac59e9e936dc937988dd538bded480f10ffe81749b9932350a215fe8e3751 +(I) [14:33:33.847] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=46dbaa8378bbaf422d19de092c06ff5ed3fecbbe41601341b3a3e56be3b48f08 +(I) [14:33:35.077] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5b65e9ed46262695ccbd0ce41f371d44a98505aedbb8ae61878aecfc971e6cc0 +(I) [14:33:35.705] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=69581747314922332091de04913ac2bf0162cf24ea34bc8dc065f2c44b44440d +(I) [14:33:36.805] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fe79d9281404a265116ec0d72b1e6891c95f8205b4196b1e33214a12466e228f +(I) [14:33:37.708] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f8e69690165eabd6a8bdcf23e5948e1a5e2c91a11f0cb25548f693dca4744f8b +(I) [14:33:38.839] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e3c8444d9580e69a700d0a6c25c6b39495b8de1f9a4ded4ce22045f0bc73ae9a +(I) [14:33:39.575] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1c5128d3349ce36bc2129e509aac44a6098084eca0a8a3a866abeffe7953703b +(I) [14:33:40.453] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8761666b75eef2a6d85466bb8218f5f575f15c729372ce8f4a2c624c3db70578 +(I) [14:33:41.339] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3ca9f08326bc69e9a4b15cebeb23b3189598f53e08889e30101dd6ad3427b07f +(I) [14:33:42.328] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=183a8baa6db4fd1cf5fa1b642c86ed4e51648ab3da11d856dcd1656a8107d1a2 +(I) [14:33:43.462] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a469b31047b58963c5211ce019fee32020f11d718b26e9b93a747e2a38523e24 +(I) [14:33:44.222] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=561eae45974d3fdb63e8a8e664437d9fe8c8b6b912b74ce803998437e04d8033 +(I) [14:33:45.214] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d8c821650aa8cd8bafa91fcaa93eda03eb0ef109934b0da44e36cced51d1f972 +(I) [14:33:46.522] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9331a1b3d73f46cfb468c008b2c075b0e93344e0a29afa67a25507ae7d27fa2c +(I) [14:33:48.005] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=add8f3e7483c22221d3ee3c0292726c8a2b83838b591f17ca19ead7a8621607d +(I) [14:33:49.288] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=23e89ac0b03b9338a833448d86427707669ca1004a8df41942f8cd974af27eac +(I) [14:33:50.006] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=257/0, mdat=376/752, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=24/7, lb_c=0/0, cast=0/0, cdat=217/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:33:50.963] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ad16b7e0a1d22b02e5911c80996d44c5ea43c1bd3d14ee2644183322670f86b9 +(I) [14:33:52.835] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=dde2f01908a2a86c92b932d8ad5ce153851827824f466fb189fe9ae9f19bfdc8 +(I) [14:33:54.007] [000022800]: Local user framerate is [96.421074] +(I) [14:33:54.007] [000022800]: Local user MinDelay=[41ms], MaxDelay=[76ms], AvgDelay=[62ms], minRTT[23ms], maxRTT[176ms], avgRTT[65ms] +(I) [14:33:54.964] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=bf30ae4104569839c5e8840aa98c507ef58486e24242c207af3e2e589617484d +(I) [14:33:57.100] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1761ad727f8742595dccd981e5efd1002705afc23cca1902fff8e5bbf87e02fa +(I) [14:33:59.205] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f605177c1e8b46a083c197c197b1b59be3a91ecaf424db93a446eecfce99f6ce +(I) [14:34:01.338] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=69aea746bd741c31333df29b49c7ab7628518f91b754d11ae1f0750c939c469f +(I) [14:34:02.592] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7d82657badb42d9dde9dc032eb4079c2c25f6315ef9df17d9de62d22ddd5097c +(I) [14:34:04.001] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=44/0, mdat=112/224, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=7/1, lb_c=0/0, cast=0/0, cdat=43/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:34:04.722] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=bd057bc0e24df619fa1e0e36003e652507952e62bb706e8a20cf171f24314889 +(I) [14:34:06.338] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=bfe4c0775e7b249a10feb4d963d19c8471a8442a19760af6a8faab19786fa346 +(I) [14:34:07.865] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8eeb0180bbc9cf17497040a07075a80bbe13dae7eceba7a67742ea17f515275d +(I) [14:34:08.595] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fb9e27efaf22731968145810f67dbeec553b5ca8dda447059b41d8e41233b491 +(I) [14:34:10.491] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=db9b3a6d4d6b423824038ddb0615b2ee067d60e39bc2be3e9eb8edf3341c774b +(I) [14:34:11.156] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e4dc7bc9fa453c828fba99f57bd8741c8a56314df9e2b15fc32ac84c2ca92220 +(I) [14:34:11.661] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5200e7653343064a700b905fd12ca7cb20e14e7c94a8a284109d303c2cfb1a0b +(I) [14:34:13.260] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1995c102b5908d583f41b162464518237f7200c93cfc3e4d80cfc81e2c1e1df9 +(I) [14:34:15.003] [000022800]: Local user framerate is [95.978012] +(I) [14:34:15.003] [000022800]: Local user MinDelay=[50ms], MaxDelay=[71ms], AvgDelay=[59ms], minRTT[29ms], maxRTT[149ms], avgRTT[63ms] +(I) [14:34:20.373] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=01ac8cb68aea38e8335d6b51c7b4ff0ae13951d8ec141d374a9e97d161a3ff0c +(I) [14:34:24.484] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f26aa3ce37139befa48249fb4ff7a9d764d45dd0258990c0780df45a34c322d9 +(I) [14:34:26.724] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f78c04e0e8ffb84f5cab25516051f7a8bd247f48dad24ec6978fd58f80f057b9 +(I) [14:34:27.493] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=be660539193dc22570d9af9774b2f989c2f028f2c6033bba959ec57202b0b983 +(I) [14:34:33.253] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ffffdd46082f138615b416f7f265aedf510d143b14af3d80e16d6e9e9366d1a5 +(I) [14:34:36.001] [000022800]: Local user framerate is [91.099998] +(I) [14:34:36.001] [000022800]: Local user MinDelay=[44ms], MaxDelay=[74ms], AvgDelay=[60ms], minRTT[25ms], maxRTT[175ms], avgRTT[60ms] +(I) [14:34:36.233] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=75136e2d717dbfb820a6a58f69caff964ebb8048e58305e35d402422fcbec509 +(I) [14:34:38.308] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a8376057938aa2902d10c98bf6a85aa40d64fa6eb36e28b1deae3f0d45f874a6 +(I) [14:34:40.485] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e15c5a2c83a9d8951171f1e9ca6727bb0203fffc0d9304774ac0be532d575f33 +(I) [14:34:42.610] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=181e1369ee08657211f1b7acbf3fdf1bbed6b8b01e6e9044592bea5cd8d2da22 +(I) [14:34:51.006] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=217/0, mdat=376/752, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=24/7, lb_c=0/0, cast=0/0, cdat=193/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:34:52.641] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e5a025049e3948dff5345ad542b5ddbb0167f53a727cadc5f7bd2a0f05d69600 +(I) [14:34:57.005] [000022800]: Local user framerate is [95.290466] +(I) [14:34:57.005] [000022800]: Local user MinDelay=[44ms], MaxDelay=[84ms], AvgDelay=[60ms], minRTT[25ms], maxRTT[175ms], avgRTT[58ms] +(I) [14:35:03.115] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=bd703726a634d9aa549fa902eb1a34977738e01e17c95f80a29cb5f161836aa5 +(I) [14:35:05.010] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=46/0, mdat=111/222, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=7/2, lb_c=0/0, cast=0/0, cdat=43/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:35:14.022] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=28624d7f282584fad23ad777a64bd06b9799a3721eb34319c332e648d9add15a +(I) [14:35:18.000] [000022800]: Local user framerate is [93.286003] +(I) [14:35:18.000] [000022800]: Local user MinDelay=[47ms], MaxDelay=[81ms], AvgDelay=[61ms], minRTT[31ms], maxRTT[158ms], avgRTT[52ms] +(I) [14:35:26.385] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=51bf1978f90adfd21e04be7fa1b17c3457f97b3ee11b0ff475f68b29fae571f1 +(I) [14:35:39.003] [000022800]: Local user framerate is [93.281334] +(I) [14:35:39.003] [000022800]: Local user MinDelay=[47ms], MaxDelay=[81ms], AvgDelay=[61ms], minRTT[25ms], maxRTT[168ms], avgRTT[56ms] +(I) [14:35:39.767] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f168a13fbf27bf3088c5874bf251392341bef101be070bf47fe3addde81327b9 +(I) [14:35:41.386] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=54f77b310f9813e4b048dfcdc45d24fcdba2ef9220e7735e08a95833cec59100 +(I) [14:35:43.326] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a7b4ce57121d0e276164ada271d06ad1c7cd980c342f6d1de37e1a252c174d7e +(I) [14:35:45.782] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=06192f223c1519bfafead72bd436fd159cfd05fd48fcb573ff06553550501647 +(I) [14:35:51.640] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=78112e23f7ea4556218205bcd0812820718140bb7c78d3314dac3da006fc582e +(I) [14:35:52.009] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=230/0, mdat=376/752, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=23/6, lb_c=0/0, cast=0/0, cdat=205/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:35:54.017] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4ab550c0c892d8a9dc96c31f445387428b16ea4931be1963240cca922f150edb +(I) [14:35:55.885] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=87dce51cee5cab5ae019186febbb29d6d727e136f7b1da1c5f80df4c8ea16682 +(I) [14:36:00.009] [000022800]: Local user framerate is [90.427391] +(I) [14:36:00.009] [000022800]: Local user MinDelay=[46ms], MaxDelay=[82ms], AvgDelay=[62ms], minRTT[24ms], maxRTT[168ms], avgRTT[57ms] +(I) [14:36:02.031] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=708dff517b194d862af0be002bafbff3d37b6ad9b4d37b49c94e013676f52993 +(I) [14:36:06.003] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=56/0, mdat=112/224, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=8/2, lb_c=0/0, cast=0/0, cdat=48/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:36:08.997] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=dda0ee7bd3a5a3343204fe9659268ae59b42e598e4168b8a5a26a4465209d46b +(I) [14:36:09.826] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b6a571a1be4ee5a0e0760596d6069b611ca72a3168a1bf0aeb25161f642657f4 +(I) [14:36:10.649] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2985977107b3207eb5c9726b6c47f86c17cc43c3d80b75916ea5bc29a183bb22 +(I) [14:36:12.035] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=89c4dc6a8bd02d25cffcccf26e3e80d5e866ed7f1263f506a39b7b92d352e80a +(I) [14:36:13.907] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e1880ddfcd0bcf6c2cc70832d3bd26ab0d4ebb361b062643d003e1e763be9a02 +(I) [14:36:15.395] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=87fb13160f7b3ff1d1a44e9d67bbaf6d2ee3b45e7b2c82f4d006c1ca18351f77 +(I) [14:36:17.528] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b82eda6d597fbfe1df56dd5cea0f110fd1c56b680e512e263491f23a4e6349a9 +(I) [14:36:19.399] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a5ff3c029e04468401b16531ccbf2e0eddc0d30d01daaa1b7f55c74cc2b2feda +(I) [14:36:21.003] [000022800]: Local user framerate is [92.158524] +(I) [14:36:21.003] [000022800]: Local user MinDelay=[46ms], MaxDelay=[80ms], AvgDelay=[63ms], minRTT[25ms], maxRTT[170ms], avgRTT[62ms] +(I) [14:36:21.149] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d72b39ec450d46168dd05d5aab16ff7da6be9e51eab6776baaef455b58cc9e4d +(I) [14:36:23.036] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2d1bfc9a9d87d9c12309b6b2774e8e57b7e4c398c0779a71cea17c677cf5094c +(I) [14:36:24.156] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7447673cfee6d1ef326734c36ca7a576175725875734ae748ab5385be2e166f2 +(I) [14:36:29.119] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=bb9ee312ca63a4d480610c214bf3f65bfefaf4f3f91a5e15b1f77b08ade970f8 +(I) [14:36:33.791] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a8e934343a0fbea298cd4e2e75525dae9b06b72456a1b586d28ba3c17ddf7269 +(I) [14:36:42.022] [000022800]: Local user framerate is [95.430908] +(I) [14:36:42.022] [000022800]: Local user MinDelay=[44ms], MaxDelay=[80ms], AvgDelay=[61ms], minRTT[25ms], maxRTT[170ms], avgRTT[61ms] +(I) [14:36:45.073] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b450655fee836fc76be5cc8d95fad250a9f2719c299aa848cc9c7f05397a8c51 +(I) [14:36:52.442] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a6c4ddfe9f9ee7728bd2d88f48e3fbd9411d6e1576b79a6b9a0047c863844ba9 +(I) [14:36:53.010] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=244/0, mdat=376/752, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=22/6, lb_c=0/0, cast=0/0, cdat=211/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:36:57.424] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b391109a15990eba444b0cb8e1ce39a2c05896b865ecc2066358924e0c151f5f +(I) [14:37:03.003] [000022800]: Local user framerate is [94.071777] +(I) [14:37:03.003] [000022800]: Local user MinDelay=[43ms], MaxDelay=[83ms], AvgDelay=[61ms], minRTT[25ms], maxRTT[170ms], avgRTT[62ms] +(I) [14:37:04.812] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ad77c986747ad123e7f86f97281ef73143fc25d7334f93c6e8260a0d00cfe47f +(I) [14:37:07.001] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=56/0, mdat=112/224, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=8/2, lb_c=0/0, cast=0/0, cdat=49/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:37:18.437] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1a5b201f7f7cd32881647098016845afb9af1fec5b970004f09a877c265a52b7 +(I) [14:37:20.436] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=888e7c3294b5aa8fb87a745cc431d4eb71c82e6efa9e012db18655366ccfb48b +(I) [14:37:21.694] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8c5b592072e0fcadacea8d420439dec1a281aabd165a16ceaea9431fbdd560bb +(I) [14:37:23.243] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=20edd3cc22fad169fc35797b9f4fec2bc9eb90966e440298fdc105d959c00abd +(I) [14:37:24.009] [000022800]: Local user framerate is [91.458839] +(I) [14:37:24.009] [000022800]: Local user MinDelay=[33ms], MaxDelay=[76ms], AvgDelay=[59ms], minRTT[26ms], maxRTT[153ms], avgRTT[54ms] +(I) [14:37:33.518] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3b92b2e9cdbb4deec2fc1bdf1314d9689fff302675a17d4614d1b4309f516bbc +(I) [14:37:35.478] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0d6ff3a612e711b8241cda9829b52fea0c0502b81026485e62ac21333637b1fd +(I) [14:37:37.078] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b2c476715ceb138d2851db73889423d21e79a7a3585d35e0177cf6579bb802d3 +(I) [14:37:39.955] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a9c381e9438abfc56f7352cbc482702fb9e81f72c1625a96941438d1e0cc7428 +(E) [14:37:41.730] [000022800]: TelemetryRow::addString : Key: (ability_name), Value (35) is larger than Column (32) +(I) [14:37:45.009] [000022800]: Local user framerate is [92.272316] +(I) [14:37:45.009] [000022800]: Local user MinDelay=[33ms], MaxDelay=[76ms], AvgDelay=[61ms], minRTT[22ms], maxRTT[167ms], avgRTT[55ms] +(I) [14:37:45.018] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=15c87bdcfcaa25c7c0e305ec5455b836f97e59c513e5a249995eae8bc7b12884 +(I) [14:37:54.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=227/0, mdat=376/752, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=23/6, lb_c=0/0, cast=0/0, cdat=201/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:37:56.719] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=434299562f8dc1e7349a79ac2d30c021d897966985fce635b5edf04653a2db77 +(I) [14:37:58.578] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=eef8cd8067adb10ca48a79b9708675b4c95a5f068c812838a1ebca3882db7e07 +(I) [14:37:59.590] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2e6ed32c767e88729bd8dcea7d3d8ef297bc79875766066f23896c9ec750a249 +(I) [14:38:00.833] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=113f3766e0848e0a71c96a7f7176b1166908ba8c7162dd86fc36b96fe89d8284 +(I) [14:38:02.678] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=96c0898dcbf6262e8ecbfd32591afc757f0debb7a770b160cc2059a983dbcb85 +(I) [14:38:03.959] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=339287127aaa01446089a506665af3385b523a090f88d705fdc0b3e06b1b691f +(I) [14:38:06.010] [000022800]: Local user framerate is [99.300003] +(I) [14:38:06.010] [000022800]: Local user MinDelay=[50ms], MaxDelay=[71ms], AvgDelay=[60ms], minRTT[43ms], maxRTT[138ms], avgRTT[67ms] +(I) [14:38:08.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=60/0, mdat=112/224, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=7/2, lb_c=0/0, cast=0/0, cdat=56/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:38:09.483] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=853e534c5b20713576e1550b32d5bec76ac3c7f14e315794f1ca5e4139a5521d +(I) [14:38:17.445] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6c9ce97b889c61ef1f8ad0f2b114310b7ceca9e1f8e0013b90dbf37ce5f86096 +(I) [14:38:27.004] [000022800]: Local user framerate is [92.631470] +(I) [14:38:27.004] [000022800]: Local user MinDelay=[47ms], MaxDelay=[80ms], AvgDelay=[63ms], minRTT[22ms], maxRTT[169ms], avgRTT[57ms] +(I) [14:38:33.872] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=bd761f0f4e6ef74225fab85e679aaeceb062dab3759117681819ff8f9648ad8a +(I) [14:38:39.691] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c3f2755d84f85513f9c58e4ce2e64fc76a6f97c28216ee3158ef19646f60f346 +(I) [14:38:44.893] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=54faad7685e2b5ae3bde2fb0d2532ffd841ff897ce8b60247a60497fa74e5cc1 +(I) [14:38:46.479] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=bd3821fe446f8692b7e07443d10aa8740ae9a59c4bf9553158531cef544d13a7 +(I) [14:38:48.009] [000022800]: Local user framerate is [91.749527] +(I) [14:38:48.009] [000022800]: Local user MinDelay=[47ms], MaxDelay=[82ms], AvgDelay=[63ms], minRTT[22ms], maxRTT[169ms], avgRTT[59ms] +(I) [14:38:48.599] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=64975956e3bfefd54ef053c31635cfb43143cd0ea6c0f4e769e3bdbba9ab5de9 +(I) [14:38:54.416] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c675b685c4846866dfc597dd66e01640f2dfc0ff7b8bdb676c3cbf920944c3a2 +(I) [14:38:55.009] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=183/0, mdat=376/752, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=23/6, lb_c=0/0, cast=0/0, cdat=168/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:39:00.873] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7b7f7786fa925c82aed5b059e7c7db930467c14bb36d407496158f8d28e8fb03 +(I) [14:39:02.749] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e2e009ef59e9484bf2a64a37d68080e415c5edc5de180a5694225618c3d3b77f +(I) [14:39:04.455] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7d12d2e31b06a53a1cf4efc0dc6393917e6858882e58156625df4eb7c3db6700 +(I) [14:39:05.995] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1fec866e161ea9e352ef36f52cee4be6c294b5253b4382da39ada90b39638ead +(I) [14:39:07.357] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=34b77a845d726ca5aea82fab8e9d01b4612fad21be56aed2bdee1523188c64b7 +(I) [14:39:09.001] [000022800]: Local user framerate is [87.682457] +(I) [14:39:09.001] [000022800]: Local user MinDelay=[53ms], MaxDelay=[76ms], AvgDelay=[65ms], minRTT[33ms], maxRTT[159ms], avgRTT[74ms] +(I) [14:39:09.010] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=60/0, mdat=112/224, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=8/2, lb_c=0/0, cast=0/0, cdat=52/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:39:09.242] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=18d3a331ec0c33a3e054c860d0d6f1516da31745ef45a2e0a039d40fe3041bbd +(I) [14:39:14.576] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=da0f0fa47ef4515ecdc2cbba60cbcf42b000b8530ba8bff46eb30aab227aca72 +(I) [14:39:24.145] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=509b13f0e84f5969872350095236c78a2375b33ed71f4067881132e97c00be60 +(I) [14:39:30.003] [000022800]: Local user framerate is [85.099998] +(I) [14:39:30.003] [000022800]: Local user MinDelay=[50ms], MaxDelay=[81ms], AvgDelay=[66ms], minRTT[25ms], maxRTT[166ms], avgRTT[66ms] +(I) [14:39:33.067] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c58f95eb8b124eab365dda8718e12051b28dae8a7191db98f44db84f77b60251 +(I) [14:39:45.875] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=550e3ea8073faef2ec92ec44d34645dd01613de73631a0020f335d670f3327e1 +(I) [14:39:47.748] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=335cec66e36162ac3385bc74a5e6840e8c1a503f67a455f4e4af78f001f1db79 +(I) [14:39:51.005] [000022800]: Local user framerate is [86.044067] +(I) [14:39:51.005] [000022800]: Local user MinDelay=[46ms], MaxDelay=[89ms], AvgDelay=[66ms], minRTT[22ms], maxRTT[167ms], avgRTT[60ms] +(I) [14:39:54.037] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=80d79824ae99dbebb9e5696dbe8e3e5942d2efccfe65403cf0d9ada2a009da84 +(I) [14:39:56.003] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=192/0, mdat=375/750, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=22/6, lb_c=0/0, cast=0/0, cdat=169/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:40:03.879] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=10fae56e8416741dbae6969e03a1a01f47880c924c22d22334f1f94de6f1119e +(I) [14:40:07.989] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=50d0bb1854c63f7cce70398e3e7c130cb21adbde973c964f6b7fd620ad4a9a28 +(I) [14:40:10.003] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=63/0, mdat=112/224, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=8/2, lb_c=0/0, cast=0/0, cdat=53/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:40:10.297] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8d5f58ca6549eea36280774ce11d898d689d2e8a9349600bed9dcc46c4bbb426 +(I) [14:40:12.011] [000022800]: Local user framerate is [89.750000] +(I) [14:40:12.011] [000022800]: Local user MinDelay=[53ms], MaxDelay=[79ms], AvgDelay=[67ms], minRTT[26ms], maxRTT[168ms], avgRTT[75ms] +(I) [14:40:12.366] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=91291c7f69a8f6e78a4f1f191723830791fa8cb2436d2244dff773e14c085dce +(I) [14:40:15.567] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=605f5ff4eaa4eb90283a5c8c91270d438249b21e95e91947fed32d7c6aed0507 +(I) [14:40:18.197] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=07efd7a25493ebc3214b6033f9cebb15691380bc2d76d08d3ea56afbd08620d6 +(I) [14:40:19.493] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=dbe040aaffd1ecdecb7f611534ce35abe0348c4b212f2ea0b7a3198625a35c17 +(I) [14:40:22.446] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b46acd8182b306322bebf3d7929b66daca673715175e45bdb6bad013b9b3da88 +(I) [14:40:24.280] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e6b0bb61f26c7b4f9a8338d869e9837009e16444e6aa81614f4ead4ced53e626 +(I) [14:40:25.651] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7512978e94c20fe638cbdc1e2b69720f76df38569eda5c6984a798c197074e3a +(I) [14:40:28.469] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f43eec79df706f161af802ab6460fd794eb6c4445c362c941846ba21ff992170 +(I) [14:40:33.013] [000022800]: Local user framerate is [85.195732] +(I) [14:40:33.013] [000022800]: Local user MinDelay=[53ms], MaxDelay=[83ms], AvgDelay=[66ms], minRTT[23ms], maxRTT[168ms], avgRTT[70ms] +(I) [14:40:37.860] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=afb09a8d2f94a57d210ef12229bf229d10c4aa8fee7374a8a8a00d63de5e8c02 +(I) [14:40:39.215] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8e8f7bfffc7a37146d4b2be6ad8a5bee99c28aef800f3f89b938503531ef90c1 +(I) [14:40:40.403] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3f2a534906ba9f0709814a0757d76e35f59992935cb2a0ad4930ef038950d058 +(I) [14:40:45.683] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=554905b2b37c6e46a4a65b363e37717f2de35794c310250b63172f43f10324c0 +(I) [14:40:46.302] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1d7ad1e8a6c6dd7597fc1eaf231ee37911ff56b8f85d130d5bf9f87b5d54dfd1 +(I) [14:40:53.354] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6edde58f604367234e31467f34e7b4a21db6f6f92645415ebf20fb2c89128f13 +(I) [14:40:54.009] [000022800]: Local user framerate is [88.845551] +(I) [14:40:54.009] [000022800]: Local user MinDelay=[53ms], MaxDelay=[83ms], AvgDelay=[67ms], minRTT[22ms], maxRTT[168ms], avgRTT[65ms] +(I) [14:40:55.657] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3e57f31017209c83b488203a62e0ecdd9cd45856bdf40bb64c0abde0758a64b5 +(I) [14:40:57.010] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=231/0, mdat=376/752, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=23/6, lb_c=0/0, cast=0/0, cdat=202/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:41:00.036] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5f37739cbfe98b8a99d3bb10a14d44a9bac938860087c68e36c379ca1faa4c0c +(I) [14:41:03.167] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f0e78dfa732272e4edbec46f51a801e6f0fd90b783a71734d981c4e6797820b1 +(I) [14:41:06.310] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=57e8a006352ffc9bfbcf945818e564765a59556350bb3908a7161f5da947e966 +(I) [14:41:07.549] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8b6a35db2296a9d763e8b5f9f7090f0ab4a978e60f892eb5f8a7920a739232e8 +(I) [14:41:08.562] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2c30970bad50afddc0094004af2985b318697e28de1964a24af6ece845a0df7c +(I) [14:41:10.047] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=67daa59270f8e6a9619f2258d6e65b8b64a2cb44595d93218cd702c9c78df00a +(I) [14:41:11.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=57/0, mdat=112/224, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=7/2, lb_c=0/0, cast=0/0, cdat=55/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:41:15.010] [000022800]: Local user framerate is [86.719643] +(I) [14:41:15.010] [000022800]: Local user MinDelay=[55ms], MaxDelay=[82ms], AvgDelay=[67ms], minRTT[22ms], maxRTT[157ms], avgRTT[77ms] +(I) [14:41:17.238] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=012bc4fe8dccc56b377684b09a973d4ccc74ecda5b829ee759abad78a33fdf52 +(I) [14:41:19.555] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=496055e64015d2b3aa600ccf7d9a1d621268929775522196a1bad6450c0abf0c +(I) [14:41:24.704] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ee361a769f87e8812526105d0f986e62f51adcbf75ea41ef1e3ea64460c92b3c +(I) [14:41:29.965] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8397ba7cf8ef98ada2f22cca525d4f45059cfbbd0b0596671a0bcb203f268cd8 +(I) [14:41:32.433] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0811e2508fcc24e4fed1f9026dd6aadbce3bbba69fca1cd42f58aa6d9069896e +(I) [14:41:35.802] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=456efa206f8bde7b64b85e660a7cbe5eced59c68f6a2fa6c2732c5042e458eec +(I) [14:41:36.022] [000022800]: Local user framerate is [81.491844] +(I) [14:41:36.022] [000022800]: Local user MinDelay=[55ms], MaxDelay=[86ms], AvgDelay=[68ms], minRTT[22ms], maxRTT[157ms], avgRTT[72ms] +(I) [14:41:40.875] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=05224dce3eccd827c5dd6b2e7007e928492515bd467acdedf9038e389a4e6376 +(I) [14:41:46.551] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4b4757728a64ba6dae3ccdf38f6b4401cf656332ac60981396fd8ce4da75f891 +(I) [14:41:48.305] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=912a54e162c4fa6cf31fa5f51948782811a391d52c4dac2f838b84cd5e2505fd +(I) [14:41:51.242] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=aba0dd80e6143131c74901fe3828780194eca23cef3aaccce5ccddc99158df52 +(I) [14:41:54.535] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3d0e2627e236f5df145c4448654dc2a5ba5a3cbd6d38cb8def70a4aecfa86b9b +(I) [14:41:57.004] [000022800]: Local user framerate is [83.383316] +(I) [14:41:57.004] [000022800]: Local user MinDelay=[54ms], MaxDelay=[86ms], AvgDelay=[67ms], minRTT[22ms], maxRTT[165ms], avgRTT[69ms] +(I) [14:41:57.782] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=65794201e3a540436184b1405769df62ca7acb4619ae3804be710ffcf4f9751a +(I) [14:41:58.003] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=252/0, mdat=376/752, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=23/6, lb_c=0/0, cast=0/0, cdat=220/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:41:59.562] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=70fd513640707465a2e609f5ce3ab8086e690fba96f20cb457975b2f02d00262 +(I) [14:42:01.102] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5f08d4b68f15258b19064d216789f67de6d727efec7a1cfef2ea775f621db729 +(I) [14:42:03.673] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=269190ea66dc2bce2755726aa6feb4267874354484ab57bd3e6e1ad891457803 +(I) [14:42:08.921] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f87fd14aed67bc263e69131d6d863a77e588eff916c06c9cef1cb835c4fdae61 +(I) [14:42:12.011] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=68/0, mdat=112/224, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=7/2, lb_c=0/0, cast=0/0, cdat=60/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:42:14.659] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=66b7559c4f4e586f61dbd6501828df955b9ad9be5d3fc9c80849086839c9d22d +(I) [14:42:18.006] [000022800]: Local user framerate is [83.225029] +(I) [14:42:18.006] [000022800]: Local user MinDelay=[59ms], MaxDelay=[84ms], AvgDelay=[69ms], minRTT[24ms], maxRTT[166ms], avgRTT[67ms] +(I) [14:42:19.068] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=295a71114c55829ccc45880a2f3d6503d7bc8d84ecdf2823378043919bafe755 +(I) [14:42:21.194] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8375edb7513b71a89d9cf22bb4c071d127a6c671faf4560a764127651337ad08 +(I) [14:42:23.374] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=bb620d9e866deb4bf513eeefe9827fd007861c49e146e4c798a2af336eb6b41b +(I) [14:42:26.046] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c4acfb2d1408721e74de8eab108ef50cb5c751f86673f53c176114652407b830 +(I) [14:42:35.243] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=abbc7db611f56a330c085c964d5c95d612d164b605725976002310885239073d +(I) [14:42:39.010] [000022800]: Local user framerate is [83.099998] +(I) [14:42:39.010] [000022800]: Local user MinDelay=[57ms], MaxDelay=[88ms], AvgDelay=[69ms], minRTT[23ms], maxRTT[166ms], avgRTT[69ms] +(I) [14:42:39.818] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5f993da26a44c16f3c682e0a2b3983a6b822e0d184a42c8ed633b854e020146e +(I) [14:42:41.207] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0e0774a3ef518a312f2927884b132f6c349c1c20189261979234b63cb8ebf196 +(I) [14:42:59.010] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=182/0, mdat=376/752, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=23/6, lb_c=0/0, cast=0/0, cdat=168/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:42:59.431] [000023200]: Read bytes [0,"MatchReceivedChatMessage",3264,[34038,"may i kill your tank i need weakly","may i kill your tank i need weakly",2,5870608]] +(I) [14:42:59.437] [000022800]: Received chat message { may i kill your tank i need weakly } +(I) [14:42:59.437] [000022800]: Starting FilterChatJob for message { may i kill your tank i need weakly } +(I) [14:42:59.471] [000022800]: Posting chat event from FilterChatJob for message { may i kill your tank i need weakly } +(I) [14:42:59.970] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:42:59.970] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:42:59.970] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:42:59.970] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:42:59.970] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:42:59.970] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:42:59.970] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:42:59.970] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:42:59.970] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:42:59.970] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:42:59.970] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:42:59.970] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:42:59.970] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:42:59.970] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:42:59.970] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:42:59.970] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:42:59.970] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:42:59.970] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:42:59.970] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:42:59.970] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:42:59.970] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:42:59.970] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:42:59.970] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:42:59.970] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:42:59.970] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:42:59.970] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:42:59.970] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:43:00.005] [000022800]: Local user framerate is [89.868538] +(I) [14:43:00.005] [000022800]: Local user MinDelay=[51ms], MaxDelay=[88ms], AvgDelay=[68ms], minRTT[22ms], maxRTT[166ms], avgRTT[65ms] +(I) [14:43:00.257] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:43:00.257] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:43:00.257] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:43:00.257] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:43:00.257] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:43:00.257] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:43:00.257] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:43:01.015] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b55e5131f6ac6ef81b004a26720d6a0e79c3cfbd46f3be3da9951bdc6daee992 +(I) [14:43:13.009] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=37/0, mdat=112/224, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=8/2, lb_c=0/0, cast=0/0, cdat=36/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:43:15.876] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7ed1c68edafb7616c59561c9de239395413f5cb179d267bd4d1b99581147d2a5 +(I) [14:43:21.002] [000022800]: Local user framerate is [109.878014] +(I) [14:43:21.002] [000022800]: Local user MinDelay=[44ms], MaxDelay=[84ms], AvgDelay=[60ms], minRTT[29ms], maxRTT[167ms], avgRTT[57ms] +(I) [14:43:24.681] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7ff2ea65bfe7a88a26775128aaf6aa638593f6ba09b838f1595b7869a66c459e +(I) [14:43:36.800] [000022800]: MOD -- Game Over at frame 12264 +(I) [14:43:36.872] [000022800]: Report sent for profileID[34038] -> race=[198437], result=[1], XP Gain=[13362] +(I) [14:43:36.872] [000022800]: Report sent for profileID[3264] -> race=[129494], result=[0], XP Gain=[8382] +(I) [14:43:36.900] [000022800]: Party::SetStatus - S_CONFIGURING +(I) [14:43:36.913] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1b9930a255b9c2aaea4325276da2fad034d1af159939ea02d53990e2b56134bd +(I) [14:43:36.914] [000022800]: Sending matchinfo change #11 +(E) [14:43:37.019] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [14:43:37.491] [000022800]: MPMatchSetup::OnMatchEvent - MET_ReportResults - result [0] +(I) [14:43:37.491] [000022800]: GameObjController - OnMatchEvent: event type 9 +(I) [14:43:37.774] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fd11a01cb7b71e0851314585e185c2509f4c2b4d87475eb19d431a36bc7d7d84 +(I) [14:43:38.289] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5d32362e391f3bf8613361b4e9df0d1090bea591a96fc7819f60dd4adcc5977a +(I) [14:43:38.360] [000023200]: Read bytes [0,"AvatarStatsUpdatedMessage",3264,[[[1,3264,78,"",1680525817]]]] +(I) [14:43:38.360] [000023200]: Read bytes [0,"AvatarStatsUpdatedMessage",3264,[[[3,3264,95451,"",1680525817]]]] +(I) [14:43:38.360] [000023200]: Read bytes [0,"AvatarStatsUpdatedMessage",3264,[[[13,3264,21509,"",1680525817]]]] +(I) [14:43:38.360] [000023200]: Read bytes [0,"AvatarUpdateMessage",3264,[[2726,3264,"/steam/76561198023526153","","Wolfsindis","",15990,2251,2251,2074389,null,"76561198023526153",3,[]]]] +(I) [14:43:38.360] [000023200]: Read bytes [0,"AvatarUpdateMessage",3264,[[2359,34038,"/steam/76561198212034715","","Kirov","",71768,1841,1841,2074389,null,"76561198212034715",3,[]]]] +(I) [14:43:38.360] [000023200]: Read bytes [0,"GameResultNotificationMessage",3264,[[[3264,20,129494,1,[0],15990,[["unitprod",43],["vvetrank",6],["cabil",4],["dmgdone",7004],["plost",24],["svetrank",2],["reqmax",0],["cpearn",6],["reqspnt",0],["powearn",0],["blost",0],["elitekill",2],["edeaths",97],["structdmg",0],["pcap",28],["inactperiod",29],["lowintperiod",0],["precap",19],["sqkill",2],["popmax",0],["powspnt",0],["sqprod",10],["bprod",9],["svetxp",5400],["vabnd",0],["addonkill",44],["totalcmds",2299],["gammaspnt",0],["vkill",2],["objdmh",0],["abil",75],["sqlost",5],["vcap",0],["vlost",1],["gt",1533],["upg",2036],["vvetxp",5850],["reqearn",0],["vp1",0],["vp0",0],["erein",74],["cflags",0],["wpnpu",1],["ekills",46],["powmax",0],["vprod",2]],0,10,[],null,[],[],[],[],[],[]],[34038,20,198437,0,[0],71768,[["unitprod",35],["vvetrank",12],["cabil",3],["dmgdone",10617],["plost",19],["svetrank",3],["reqmax",0],["cpearn",7],["reqspnt",0],["powearn",0],["blost",2],["elitekill",-2],["edeaths",49],["structdmg",4],["pcap",29],["inactperiod",30],["lowintperiod",0],["precap",24],["sqkill",4],["popmax",0],["powspnt",0],["sqprod",12],["bprod",12],["svetxp",4500],["vabnd",0],["addonkill",95],["totalcmds",1111],["gammaspnt",0],["vkill",1],["objdmh",0],["abil",56],["sqlost",2],["vcap",0],["vlost",2],["gt",1533],["upg",156],["vvetxp",17300],["reqearn",0],["vp1",0],["vp0",0],["erein",42],["cflags",0],["wpnpu",0],["ekills",93],["powmax",0],["vprod",6]],0,10,[],null,[],[],[],[],[],[]]],[[15990,2130255,9,7,-1,0,0,850,2900,350,1205,7,1116,1680525817],[71768,2130259,24,21,1,0,0,718,2432,309,1143,7,1117,1680525817]],[[1,3264,78,"",1680524161],[3,3264,95451,"",1680524161],[13,3264,21509,"",1680524161],[10,34038,45,"",1679677096],[11,34038,24,"",1679605365],[12,34038,61532,"",1679677096],[16,34038,61532,"",1679677096]],5870608,"",[]]] +(I) [14:43:38.361] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:43:38.361] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:43:38.361] [000022800]: RNT_StatsUpdate: Loss notification, profileID 3264, race =129494, level=7, ranking=850 +(I) [14:43:38.361] [000022800]: RNT_StatsUpdate: Win notification, profileID 34038, race =198437, level=7, ranking=718 +(I) [14:43:39.322] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:43:39.329] [000022800]: GameApp::SetTargetState : new (UnloadedGame) old (Uninitialized) +(I) [14:43:39.344] [000022800]: GameApp::SetState : new (UnloadingGame) old (Game) +(I) [14:43:39.352] [000022800]: GetPartyStatsByID found 1 teams for user ID 3264 +(I) [14:43:40.360] [000022800]: GameObj::ShutdownGameObj +(I) [14:43:40.360] [000022800]: GetMaxFrameTimeFromProfile: players=2 expected FPS=100.000000, bars=0, max avg=0.000, sd=0.000, 0 samples = +(I) [14:43:40.360] [000022800]: PerformanceRecorder::EndRecording - game size=2, max average=0.012271, worst frame=0.010000 +(I) [14:43:40.360] [000022800]: Recording: No [2 players] + +(I) [14:43:40.360] [000022800]: Max/Avg: 0.01, 0.01 sec (fps=81.49, 98.15) (76 samples) + +(I) [14:43:40.360] [000022800]: Bars: 0 + +(I) [14:43:40.360] [000022800]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_seconds_played] +(I) [14:43:40.360] [000022800]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_units_produced] +(I) [14:43:40.360] [000022800]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_units_killed] +(I) [14:43:40.360] [000022800]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_units_lost] +(I) [14:43:40.367] [000022800]: StatArtWarningsCount 0 +(I) [14:43:40.367] [000022800]: StatDataWarningsCount 0 +(I) [14:43:40.943] [000022800]: GameApp::SetState : new (UnloadedGame) old (UnloadingGame) +(I) [14:43:40.943] [000022800]: GameApp::SetTargetState : new (Uninitialized) old (UnloadedGame) +(I) [14:43:40.965] [000022800]: SessionID : 599410 - Disconnect called with reasonID 1000 - MatchSetup::Disconnect +(I) [14:43:40.965] [000022800]: MatchSetupManager: Removed queued match [rural_town_2p_mkii] Queue is now [0] +(I) [14:43:40.965] [000022800]: SessionID : 599410 - Disconnect called with reasonID 1000 - MatchSetup::Disconnect +(I) [14:43:40.972] [000022800]: Disconnect process already running +(I) [14:43:40.975] [000022800]: SessionID : 5993d6 - Disconnect called with reasonID 1000 - Destroying Party +(E) [14:43:41.010] [000022800]: SetVisible called while !IsConnected +(I) [14:43:41.922] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:43:41.922] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:43:42.946] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cabf42b9ea5a11cebbe5e52c3ed06cc4470a7fb09036842e3388631c676e888c +(I) [14:43:43.703] [000022800]: WorldwideAdvertisementService::Process - EVENT_HOSTMIGRATION +(I) [14:43:43.703] [000022800]: WorldwidePartyService::OnHostMigration - [5870608] Got a queued migration event while disconnecting, ignoring +(I) [14:43:43.703] [000022800]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [14:43:43.703] [000022800]: WorldwidePartyService::PeerRemove, Removing peer ID: 1 +(I) [14:43:43.703] [000022800]: peerremove - peerIDRemoved=34038, reasonID=119, reason debug hint - Forcing peers to disconnect +(I) [14:43:43.703] [000022800]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [14:43:43.703] [000022800]: WorldwidePartyService::PeerRemove, Removing peer ID: 2 +(I) [14:43:43.703] [000022800]: peerremove - peerIDRemoved=3264, reasonID=1000, reason debug hint - MatchSetup::Disconnect +(E) [14:43:43.704] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:43.715] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:43.727] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:43.738] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:43.749] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:43.760] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:43.771] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:43.782] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:43.794] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:43.806] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:43.817] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:43.829] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:43.840] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:43.851] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:43.862] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:43.874] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:43.885] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:43.897] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:43.908] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:43.920] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:43.930] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:43.942] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:43.953] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:43.964] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [14:43:43.972] [000022800]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [14:43:43.972] [000022800]: WorldwidePartyService::PeerRemove, Removing peer ID: 1 +(I) [14:43:43.972] [000022800]: peerremove - peerIDRemoved=3264, reasonID=1000, reason debug hint - Destroying Party +(E) [14:43:43.976] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:43.977] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:43.989] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:43.990] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.000] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.000] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.011] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.011] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.022] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.023] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.033] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.034] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.044] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.045] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.055] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.056] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.067] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.069] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.082] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.082] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.093] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.094] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.104] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.105] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.115] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.116] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.127] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.127] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [14:43:44.127] [000022800]: PeerRemoveAll - flushing local session peer data +(I) [14:43:44.127] [000022800]: LeaveSessionInternal - no action taken, needLeave=0, service=0 +(I) [14:43:44.127] [000022800]: Destroyed Matchinfo +(E) [14:43:44.128] [000022800]: Socks::Free: Socket 0/12152 did not close properly before being freed. +(I) [14:43:44.128] [000022800]: OnDestroyPartyNotification - partyID = 5870608, prevID = -1 +(I) [14:43:44.128] [000022800]: OnDestroyPartyNotification - partyID = 5870608, prevID = -1 +(E) [14:43:44.138] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.149] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.160] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.171] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.182] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.193] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.204] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.216] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.227] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.238] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.249] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.261] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.272] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.283] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.294] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.305] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.316] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.327] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.339] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.350] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.360] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.371] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.382] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.394] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [14:43:44.405] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [14:43:44.410] [000022800]: PeerRemoveAll - flushing local session peer data +(I) [14:43:44.410] [000022800]: LeaveSessionInternal - no action taken, needLeave=0, service=0 +(I) [14:43:44.410] [000022800]: Destroyed Matchinfo +(E) [14:43:44.411] [000022800]: Socks::Free: Socket 0/12140 did not close properly before being freed. +(I) [14:43:44.411] [000022800]: OnDestroyPartyNotification - partyID = 5870550, prevID = -1 +(I) [14:43:44.411] [000022800]: OnDestroyPartyNotification - partyID = 5870550, prevID = -1 +(I) [14:43:48.280] [000022800]: starting online hosting +(I) [14:43:48.689] [000022800]: OnlineHostAsync success +(I) [14:43:48.689] [000022800]: Created Matchinfo for sessionID 5872600 +(I) [14:43:48.689] [000022800]: OnJoinAdvertisementSuccess - joined online match, server leave notification required +(I) [14:43:48.689] [000022800]: starting local hosting +(I) [14:43:48.690] [000022800]: ValidateCustomData: called with 5588 bytes of custom data +(I) [14:43:48.690] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:43:48.690] [000022800]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [14:43:48.690] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:43:48.699] [000022800]: Sending matchinfo change #2 +(I) [14:43:48.700] [000022800]: HostAsync - got operation info 0:SessionOperationInfo::SUCCESS +(I) [14:43:48.704] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=1/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=1/0, Pdel=0/0, drop=0/0, data=1/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=3/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=3/0, lb_p=0/0, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=1/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:43:48.707] [000022800]: hosting - Session is connected +(E) [14:43:48.807] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [14:43:48.928] [000022800]: CreateSteamSessionAsync::Process: Successfully created lobby; lobbyId=109775243312387799 +(I) [14:43:49.672] [000023200]: Read bytes [0,"PlatformSessionUpdateMessage",3264,[5872600,"0",109775243312387799,""]] +(I) [14:43:49.678] [000022800]: Sending matchinfo change #3 +(I) [14:43:49.714] [000022800]: HostAsync - completed with HostResult = 0 +(I) [14:43:49.714] [000022800]: Party::SetHostJoinResult - 0 +(I) [14:43:49.715] [000022800]: Party::SetStatus - S_CONFIGURING +(I) [14:43:49.715] [000022800]: WorldwideAutomatchService::OnHostComplete - automatcher is no longer active - stopPollPending 0 automatchPollID 18446744073709551615 +(I) [14:43:49.806] [000022800]: Sending matchinfo change #4 +(E) [14:43:49.807] [000022800]: Rejecting packet type 0 that claims to come from ourself +(E) [14:43:49.924] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [14:44:02.013] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ab51557a1afef417706c00bdff06dcda26a4acf406996295889316256baa32d4 +(I) [14:44:30.009] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c432a8113f5de95c4aaf651d5facc4e40227deacf142623d5464b026b6aebf6f +(I) [14:44:49.004] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/2, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/2, Pdel=0/0, drop=0/0, data=2/6, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=2/10, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=2/4, lb_p=24/4, lb_c=0/1, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:45:23.643] [000022800]: Sending matchinfo change #5 +(E) [14:45:23.736] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [14:45:25.998] [000022800]: Sending matchinfo change #6 +(E) [14:45:26.112] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [14:45:26.321] [000022800]: Sending matchinfo change #7 +(E) [14:45:26.358] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [14:45:28.216] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [14:45:28.222] [000022800]: Sending matchinfo change #9 +(E) [14:45:28.365] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [14:45:28.428] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [14:45:28.428] [000022800]: Sending matchinfo change #10 +(E) [14:45:28.478] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [14:45:29.224] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:45:29.224] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:45:29.224] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:45:29.224] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:45:29.224] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:45:29.224] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:45:29.224] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:45:29.224] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:45:29.224] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:45:29.224] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:45:29.224] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:45:29.224] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:45:29.224] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:45:29.224] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:45:29.224] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:45:29.224] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:45:29.224] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:45:29.224] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:45:29.224] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:45:29.224] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:45:29.224] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:45:29.224] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:45:29.224] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:45:29.224] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:45:29.224] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:45:29.224] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:45:29.224] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:45:37.014] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=65bea730bfb5125ad7a5d5ed9b58dd40786b3f29fcb4b925935401cefff21d24 +(I) [14:45:39.006] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [14:45:39.190] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [14:45:50.001] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [14:45:50.005] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=5/10, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=5/10, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=5/5, lb_p=22/4, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:45:50.207] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [14:45:59.011] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e90b903760635692d9e8aa15c2432348a295259af9982430953111f42ec5b7f9 +(I) [14:46:01.005] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [14:46:01.212] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [14:46:12.001] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [14:46:12.185] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [14:46:20.011] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fe1b5df3e99db2202816a1c1f3f0bb28727cb1c2397d56ffea126dc03fbfcbe4 +(I) [14:46:23.005] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [14:46:23.210] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [14:46:34.005] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [14:46:34.196] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [14:46:41.007] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7b856f8067b2f1031d8e8d1c96a70f7ee481d08f20ed3ef7e8068327cd50efd4 +(I) [14:46:45.006] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [14:46:45.195] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [14:46:51.010] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=24/4, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:46:56.005] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [14:46:56.188] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [14:47:03.008] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1f015d33f6c10f6a04b22bac919de4b88ef61742566f67b706966000a0fac10d +(I) [14:47:07.007] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [14:47:07.210] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [14:47:18.002] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [14:47:18.201] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [14:47:27.012] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=172576c02f6dda720a2e38909281ecc72e3a3fc467af777ea73b1fcbd1f24a7f +(I) [14:47:29.004] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [14:47:29.192] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [14:47:32.872] [000023200]: Read bytes [0,"Automatch2GameMessage",3264,["261781","5872898","winter_line_8p_mkii","137123","0","1","2","4","authtoken","44.212.247.85",27002,27112,27212,[[5872898,3264,7544,15990,137123,0,"/10.0.70.34"],[5872898,58617,5461,232329,198437,0,"/10.0.70.222"],[5872898,71707,6712,321961,137123,0,"/10.0.70.34"],[5872898,72076,6836,37927,137123,0,"/10.0.70.19"],[5872898,261781,-1,143562,203852,1,"/10.0.70.19"],[5872898,361148,5431,257249,129494,1,"/10.0.70.173"],[5872898,370468,-1,267511,203852,1,"/10.0.70.173"],[5872898,392397,-1,291482,129494,1,"/10.0.70.173"]],""]] +(I) [14:47:32.872] [000022800]: AutomatchInternal - OnJoinAutomatch - Server told us join matchID=5872898, hostProfileID=261781 +(I) [14:47:32.872] [000022800]: AutomatchInternal - join request validated, attempting +(I) [14:47:33.335] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:33.335] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:33.335] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:33.335] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:33.335] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:33.335] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:33.335] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:33.365] [000022800]: JoinAsync: Starting AsyncJob... +(I) [14:47:34.102] [000022800]: OnlineJoinAsync success +(I) [14:47:34.102] [000022800]: Created Matchinfo for sessionID 5872898 +(I) [14:47:34.102] [000022800]: OnJoinAdvertisementSuccess - joined online match, server leave notification required +(I) [14:47:34.846] [000022800]: ValidateCustomData: called with 2836 bytes of custom data +(I) [14:47:34.846] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:34.846] [000022800]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [14:47:34.846] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:34.846] [000022800]: ValidateCustomData: called with 1120 bytes of custom data +(I) [14:47:34.846] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:34.846] [000022800]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [14:47:34.846] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:34.846] [000022800]: ValidateCustomData: called with 1221 bytes of custom data +(I) [14:47:34.846] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:34.846] [000022800]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [14:47:34.846] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:34.852] [000022800]: Accepted matchInfo updated 29 from host +(I) [14:47:34.853] [000022800]: JoinAsync - got operation info 0:SessionOperationInfo::SUCCESS +(I) [14:47:34.863] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=1/3, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/6, Pdel=0/0, drop=0/0, data=1/2, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=2/11, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=2/4, lb_p=1/0, lb_c=0/1, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(E) [14:47:35.079] [000022800]: JoinSteamSessionAsync::Process: Steam join lobby completed; failed=0 failureReason=-1 +(E) [14:47:35.079] [000022800]: JoinSteamSessionAsync::OnLobbyEnter: Error joining lobby; lobbyId=0 ioError=1 response=0 +(E) [14:47:35.094] [000022800]: JoinAsync: failed to join platform session. Continuing anyway +(I) [14:47:35.094] [000022800]: JoinAsync - completed with JoinResult = 0 +(I) [14:47:35.094] [000022800]: JoinAsync - completed with JoinResult = 0:AdvertisementJoinEvent::R_Success +(I) [14:47:35.094] [000022800]: Creating an RLink chat channel (not a multiplayer game). +(I) [14:47:35.095] [000022800]: WorldwideAutomatch2Service::OnJoinComplete - Completed Join with joinResult=0 matchID=5872898 +(I) [14:47:35.095] [000022800]: JoinAsync: AsyncJob Complete... +(I) [14:47:35.095] [000022800]: Sending matchinfo change #11 +(I) [14:47:35.096] [000022800]: ValidateCustomData: called with 1985 bytes of custom data +(I) [14:47:35.096] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:35.096] [000022800]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [14:47:35.096] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:35.097] [000022800]: ValidateCustomData: called with 1878 bytes of custom data +(I) [14:47:35.097] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:35.097] [000022800]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [14:47:35.097] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:35.132] [000022800]: Accepted matchInfo updated 31 from host +(E) [14:47:35.175] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [14:47:35.598] [000022800]: ValidateCustomData: called with 1781 bytes of custom data +(I) [14:47:35.598] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:35.598] [000022800]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [14:47:35.598] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:35.598] [000022800]: ValidateCustomData: called with 2334 bytes of custom data +(I) [14:47:35.598] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:35.598] [000022800]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [14:47:35.598] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:35.609] [000022800]: Accepted matchInfo updated 33 from host +(I) [14:47:35.719] [000022800]: ValidateCustomData: called with 995 bytes of custom data +(I) [14:47:35.719] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:35.719] [000022800]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [14:47:35.719] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:35.729] [000022800]: Accepted matchInfo updated 35 from host +(I) [14:47:35.731] [000022800]: WorldwideAutomatch2Service::Process - Got into game successfully, 8 players present, got correct slot settings - setting metadata +(I) [14:47:36.234] [000022800]: Accepted matchInfo updated 36 from host +(I) [14:47:36.362] [000022800]: Accepted matchInfo updated 38 from host +(I) [14:47:36.601] [000022800]: Accepted matchInfo updated 39 from host +(I) [14:47:36.979] [000022800]: Accepted matchInfo updated 40 from host +(I) [14:47:37.108] [000022800]: Accepted matchInfo updated 41 from host +(I) [14:47:37.488] [000022800]: Accepted matchInfo updated 42 from host +(I) [14:47:39.002] [000022800]: WorldwideAutomatch2Service::Process - Waiting, only 0 players ready +(I) [14:47:40.013] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [14:47:40.218] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [14:47:43.008] [000022800]: WorldwideAutomatch2Service::Process - Waiting, only 0 players ready +(I) [14:47:45.016] [000022800]: Party::SetStatus - S_PLAYING +(I) [14:47:45.053] [000022800]: Sending matchinfo change #12 +(E) [14:47:45.174] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [14:47:46.847] [000022800]: Accepted matchInfo updated 43 from host +(I) [14:47:47.006] [000022800]: WorldwideAutomatch2Service::Process - Got into game successfully, 8 players present, got correct slot settings - readying up +(I) [14:47:47.007] [000022800]: WorldwidePartyService::RequestReady: Sending PlayerReadyRequest; profileID=3264 isReady=1 isSuccessful=1 +(I) [14:47:47.360] [000022800]: Accepted matchInfo updated 44 from host +(I) [14:47:47.724] [000022800]: Accepted matchInfo updated 46 from host +(I) [14:47:48.226] [000022800]: Accepted matchInfo updated 47 from host +(I) [14:47:48.356] [000022800]: Accepted matchInfo updated 49 from host +(I) [14:47:48.605] [000022800]: Accepted matchInfo updated 50 from host +(I) [14:47:49.008] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b23af9d1f266b3e0bccf61f7f49d4cb44e0480fe632d026bd8857453509ee14a +(I) [14:47:51.000] [000022800]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [14:47:51.194] [000022800]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [14:47:51.977] [000022800]: Accepted matchInfo updated 51 from host +(I) [14:47:51.977] [000022800]: WorldwideAutomatchService::OnStartComplete - detected successful game start +(I) [14:47:51.977] [000022800]: Match Started - [3264 /steam/76561198023526153], slot = 0, ranking = 7544 +(I) [14:47:51.977] [000022800]: Match Started - [261781 /steam/76561198869106805], slot = 1, ranking = -1 +(I) [14:47:51.977] [000022800]: Match Started - [71707 /steam/76561198057851590], slot = 2, ranking = 6712 +(I) [14:47:51.977] [000022800]: Match Started - [361148 /steam/76561197976307373], slot = 3, ranking = 5431 +(I) [14:47:51.977] [000022800]: Match Started - [72076 /steam/76561198006768556], slot = 4, ranking = 6836 +(I) [14:47:51.977] [000022800]: Match Started - [370468 /steam/76561198079282861], slot = 5, ranking = -1 +(I) [14:47:51.977] [000022800]: Match Started - [58617 /steam/76561198847016482], slot = 6, ranking = 5461 +(I) [14:47:51.977] [000022800]: Match Started - [392397 /steam/76561198134958876], slot = 7, ranking = -1 +(I) [14:47:52.009] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/3, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/10, Pdel=0/0, drop=0/0, data=20/36, mdat=0/0, voip=0/0, rchk=0/0, nudg=4/8, Thdr=0/0, Peer=24/57, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=24/27, lb_p=8/2, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:47:52.273] [000023200]: Read bytes [0,"MatchStartMessage",3264,[[[361148,["2068340"]],[261781,["2068341","2068340"]],[392397,["2068341","2068340"]],[3264,["2068341","2068340"]],[71707,["2068340"]],[72076,["2068340"]],[58617,["2068340"]],[370468,[]]],[["361148","129494"],["261781","203852"],["392397","129494"],["3264","137123"],["71707","137123"],["72076","137123"],["58617","198437"],["370468","203852"]],1680526071,[["361148",[[33253795,4,451707,361148,1,0,"{}",1677845960,2,-1,19,2147483647],[33253831,1,453412,361148,1,0,"{}",1677845960,4,-1,3,2147483647],[33253797,2,451861,361148,1,0,"{}",1677845960,6,-1,19,2147483647],[33253789,2,453358,361148,1,0,"{\"att\":{\"is_new\":{\"val\":\"0\"}},\"epos\":\"3\",\"eslot\":\"3\",\"dlc\":1}",1677845959,33253795,-1,19,-1],[33253791,4,453356,361148,1,0,"{\"att\":{\"is_new\":{\"val\":\"0\"}},\"epos\":\"9\",\"eslot\":\"9\",\"dlc\":1}",1677845959,33253795,-1,19,-1],[33253794,2,453267,361148,1,0,"{\"att\":{\"is_new\":{\"val\":\"0\"}},\"epos\":\"5\",\"eslot\":\"5\",\"dlc\":1}",1677845959,33253795,-1,19,-1],[33253799,4,453171,361148,1,0,"{\"epos\":\"0\",\"eslot\":\"0\"}",1677845960,33253795,-1,19,2147483647],[33253800,4,453172,361148,1,0,"{\"epos\":\"1\",\"eslot\":\"1\"}",1677845960,33253795,-1,19,2147483647],[33253806,4,453175,361148,1,0,"{\"epos\":\"2\",\"eslot\":\"2\"}",1677845960,33253795,-1,19,2147483647],[33253833,4,453623,361148,1,0,"{\"epos\":\"8\",\"eslot\":\"8\"}",1677845960,33253795,-1,19,2147483647],[33253834,4,453854,361148,1,0,"{\"epos\":\"14\",\"eslot\":\"14\"}",1677845960,33253795,-1,19,2147483647],[33253838,4,454056,361148,1,0,"{\"epos\":\"13\",\"eslot\":\"13\"}",1677845960,33253795,-1,19,2147483647],[33253839,4,454057,361148,1,0,"{\"epos\":\"12\",\"eslot\":\"12\"}",1677845960,33253795,-1,19,2147483647],[33253840,4,454058,361148,1,0,"{\"epos\":\"17\",\"eslot\":\"17\"}",1677845960,33253795,-1,19,2147483647],[33253841,4,454059,361148,1,0,"{\"epos\":\"16\",\"eslot\":\"16\"}",1677845960,33253795,-1,19,2147483647],[33253842,4,454060,361148,1,0,"{\"epos\":\"15\",\"eslot\":\"15\"}",1677845960,33253795,-1,19,2147483647],[33253843,4,454067,361148,1,0,"{\"epos\":\"18\",\"eslot\":\"18\"}",1677845960,33253795,-1,19,2147483647],[33253844,4,454064,361148,1,0,"{\"epos\":\"6\",\"eslot\":\"6\"}",1677845960,33253795,-1,19,2147483647],[33253845,4,454068,361148,1,0,"{\"epos\":\"19\",\"eslot\":\"19\"}",1677845960,33253795,-1,19,2147483647],[33253846,4,454065,361148,1,0,"{\"epos\":\"4\",\"eslot\":\"4\"}",1677845960,33253795,-1,19,2147483647],[33253847,4,454070,361148,1,0,"{\"epos\":\"21\",\"eslot\":\"21\"}",1677845960,33253795,-1,19,2147483647],[33253848,4,454061,361148,1,0,"{\"epos\":\"20\",\"eslot\":\"20\"}",1677845960,33253795,-1,19,2147483647],[33253849,4,454062,361148,1,0,"{\"epos\":\"7\",\"eslot\":\"7\"}",1677845960,33253795,-1,19,2147483647],[33253850,4,454074,361148,1,0,"{\"epos\":\"10\",\"eslot\":\"10\"}",1677845960,33253795,-1,19,2147483647],[33253851,4,454075,361148,1,0,"{\"epos\":\"11\",\"eslot\":\"11\"}",1677845960,33253795,-1,19,2147483647],[33253790,1,454524,361148,1,0,"{\"epos\":\"0\",\"eslot\":\"0\",\"dlc\":1}",1677845959,33253831,-1,19,-1],[33253792,1,454522,361148,1,0,"{\"epos\":\"10\",\"eslot\":\"10\",\"dlc\":1}",1677845959,33253831,-1,19,-1]]],["261781",[[18554117,6,452979,261781,1,0,"{}",1677256278,2,-1,19,2147483647],[18554139,1,453412,261781,1,0,"{}",1677256278,4,-1,3,2147483647],[18554106,6,451866,261781,1,0,"{}",1677256278,6,-1,19,2147483647],[18554115,7,453178,261781,1,0,"{\"epos\":\"0\",\"eslot\":\"0\"}",1677256278,18554117,-1,19,2147483647],[18554116,7,453177,261781,1,0,"{\"epos\":\"1\",\"eslot\":\"1\"}",1677256278,18554117,-1,19,2147483647],[18554118,7,453176,261781,1,0,"{\"epos\":\"2\",\"eslot\":\"2\"}",1677256278,18554117,-1,19,2147483647],[18554201,7,454106,261781,1,0,"{\"epos\":\"18\",\"eslot\":\"18\"}",1677256278,18554117,-1,19,2147483647],[18554202,7,454107,261781,1,0,"{\"epos\":\"19\",\"eslot\":\"19\"}",1677256278,18554117,-1,19,2147483647],[18554203,7,454108,261781,1,0,"{\"epos\":\"20\",\"eslot\":\"20\"}",1677256278,18554117,-1,19,2147483647],[185542 +(I) [14:47:52.278] [000022800]: WorldwideAutomatchService::OnStartComplete - detected successful game start +(I) [14:47:52.278] [000022800]: WorldwideAutomatchService::OnStartComplete - forcing pollcomplete event +(I) [14:47:52.279] [000022800]: GameApp::SetTargetState : new (Game) old (Uninitialized) +(I) [14:47:52.288] [000022800]: MOD - Setting player [0] race to: [137123] +(I) [14:47:52.290] [000022800]: MOD - Setting player [1] race to: [203852] +(I) [14:47:52.291] [000022800]: MOD - Setting player [2] race to: [137123] +(I) [14:47:52.292] [000022800]: MOD - Setting player [3] race to: [129494] +(I) [14:47:52.294] [000022800]: MOD - Setting player [4] race to: [137123] +(I) [14:47:52.296] [000022800]: MOD - Setting player [5] race to: [203852] +(I) [14:47:52.298] [000022800]: MOD - Setting player [6] race to: [198437] +(I) [14:47:52.300] [000022800]: MOD - Setting player [7] race to: [129494] +(I) [14:47:52.303] [000022800]: ModDllSetup: SetStatsGameUID=23491593 +(I) [14:47:52.303] [000022800]: GAME -- Scenario: data:scenarios\multiplayer\winter_line_8p_mkii\winter_line_8p_mkii +(I) [14:47:52.303] [000022800]: GAME -- Win Condition Qualified Name: 00000000000000000000000000000000:3318379781 +(I) [14:47:52.303] [000022800]: GAME -- Win Condition Name: VictoryPoint +(I) [14:47:52.303] [000022800]: GAME -- Human Player: 0 Wolfsindis 3264 0 germans +(I) [14:47:52.303] [000022800]: GAME -- Human Player: 1 Treiben 261781 1 british_africa +(I) [14:47:52.303] [000022800]: GAME -- Human Player: 2 Le mérovingien 71707 0 germans +(I) [14:47:52.303] [000022800]: GAME -- Human Player: 3 McLovin 361148 1 americans +(I) [14:47:52.303] [000022800]: GAME -- Human Player: 4 BLITZKRIEG BOB 72076 0 germans +(I) [14:47:52.303] [000022800]: GAME -- Human Player: 5 既定之天命 370468 1 british_africa +(I) [14:47:52.303] [000022800]: GAME -- Human Player: 6 joker95174 58617 0 afrika_korps +(I) [14:47:52.303] [000022800]: GAME -- Human Player: 7 蹦嚓蹦嚓蹦嚓 392397 1 americans +(I) [14:47:52.303] [000022800]: GameApp::SetState : new (LoadingGame) old (UnloadedGame) +(I) [14:47:52.492] [000022800]: WorldwideAutomatch2Service::OnPollComplete - I am peer 3, ihost:0, islocal:1 +(I) [14:47:52.492] [000022800]: WorldwideAutomatch2Service::OnPollComplete - All players in session and ready, automatch process complete +(I) [14:47:53.124] [000022800]: GameObj::StartGameObj - info, network session GUID set to [23491593]. +(I) [14:47:53.124] [000014096]: Loading step: [OnBeginLoad] +(I) [14:47:53.125] [000014096]: Loading step: [Assign Players] +(I) [14:47:53.126] [000014096]: Loading step: [FXReflection] +(I) [14:47:53.127] [000014096]: Loading step: [FXDataContext] +(I) [14:47:53.127] [000014096]: Loading step: [FX Texture Pack] +(I) [14:47:53.128] [000014096]: Loading step: [Run Havok Garbage Collection] +(I) [14:47:53.128] [000014096]: Loading step: [Flush Inventory On Application Exit] +(I) [14:47:53.128] [000014096]: Loading step: [Default World] +(I) [14:47:53.167] [000014096]: Loading step: [FX Command Function] +(I) [14:47:53.167] [000014096]: Loading step: [AnimatorCommandFunction] +(I) [14:47:53.167] [000014096]: Loading step: [MemShrink] +(I) [14:47:53.168] [000014096]: Loading step: [Sync Checking] +(I) [14:47:53.168] [000014096]: Loading step: [Tuning Variant] +(I) [14:47:53.168] [000014096]: Using scenario tuning variant [default] +(I) [14:47:53.168] [000014096]: Loading step: [Mod Packs] +(I) [14:47:53.168] [000014096]: Loading step: [SimVis System] +(I) [14:47:53.168] [000014096]: Loading step: [DefaultWorld] +(I) [14:47:53.168] [000014096]: Loading step: [Visual Physics ME] +(I) [14:47:53.168] [000014096]: Loading step: [Deferred Decal Manager] +(I) [14:47:53.168] [000014096]: Loading step: [FogVolumeManager] +(I) [14:47:53.168] [000014096]: Loading step: [Vehicle Physics Function] +(I) [14:47:53.168] [000014096]: Loading step: [Unit Occlusion Function] +(I) [14:47:53.168] [000014096]: Loading step: [Splat Function] +(I) [14:47:53.168] [000014096]: Loading step: [Grass Function] +(I) [14:47:53.168] [000014096]: Loading step: [Object Alpha Factor Function] +(I) [14:47:53.168] [000014096]: Loading step: [Renderable Managers] +(I) [14:47:53.168] [000014096]: Loading step: [Setup Skins] +(I) [14:47:53.168] [000014096]: Loading step: [AnimEventSetup] +(I) [14:47:53.168] [000014096]: Loading step: [Session Precache] +(I) [14:47:53.367] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:53.367] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:53.367] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:53.367] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:53.367] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:53.367] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:53.367] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:53.367] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:53.367] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:53.367] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:53.367] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:53.367] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:53.367] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:53.367] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:53.367] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:53.367] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:53.367] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:53.367] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:53.367] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:53.367] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:53.367] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:53.367] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:53.367] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:53.367] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:53.367] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:53.367] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:53.367] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:53.394] [000014096]: Loading step: [Precache core resources] +(I) [14:47:53.394] [000014096]: Loading step: [Precache EBPs] +(I) [14:47:53.430] [000014096]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [14:47:53.430] [000014096]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [14:47:53.430] [000014096]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [14:47:53.430] [000014096]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [14:47:53.735] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:53.735] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:53.735] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:53.735] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:53.735] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:53.735] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:47:54.486] [000014096]: Loading step: [Precache State Tree references] +(I) [14:47:54.537] [000014096]: Loading step: [Load Actions] +(I) [14:47:54.539] [000014096]: Loading step: [Load Resources from Precache] +(I) [14:48:04.299] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:8]" finished loading with checksum [3269082004]. +(I) [14:48:05.210] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:2]" finished loading with checksum [3269082004]. +(I) [14:48:05.610] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:4]" finished loading with checksum [3269082004]. +(I) [14:48:06.264] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:8]" finished loading with checksum [3269082004]. +(I) [14:48:06.978] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:2]" finished loading with checksum [3269082004]. +(I) [14:48:06.978] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:4]" finished loading with checksum [3269082004]. +(I) [14:48:08.230] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:8]" finished loading with checksum [3269082004]. +(I) [14:48:08.975] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:2]" finished loading with checksum [3269082004]. +(I) [14:48:08.976] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:4]" finished loading with checksum [3269082004]. +(I) [14:48:09.978] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [3269082004]. +(I) [14:48:10.225] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:8]" finished loading with checksum [3269082004]. +(I) [14:48:10.976] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:2]" finished loading with checksum [3269082004]. +(I) [14:48:10.976] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:4]" finished loading with checksum [3269082004]. +(I) [14:48:11.012] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b647f92a87529156084867eba7a394243a4eb701da4a94d4c3714b85eea7db52 +(I) [14:48:11.722] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [3269082004]. +(I) [14:48:11.780] [000014096]: Loading step: [GEWorld] +(I) [14:48:11.780] [000014096]: GAME - InitializeGEWorld +(I) [14:48:12.109] [000014096]: Re-winding a compressed stream for file 'data:scenarios\multiplayer\winter_line_8p_mkii\winter_line_8p_mkii.scenario'. Expensive operation +(I) [14:48:12.230] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:8]" finished loading with checksum [3269082004]. +(I) [14:48:12.975] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:2]" finished loading with checksum [3269082004]. +(I) [14:48:12.975] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:4]" finished loading with checksum [3269082004]. +(I) [14:48:13.393] [000014096]: Regenerating ImpassMap data... +(I) [14:48:13.587] [000014096]: Regenerating SimTerrainCoverMap data... +(I) [14:48:13.636] [000014096]: SimTerrainCoverMap generation took 0.049188 seconds. +(I) [14:48:13.727] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [3269082004]. +(I) [14:48:14.226] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:8]" finished loading with checksum [3269082004]. +(I) [14:48:14.479] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:5]" finished loading with checksum [3269082004]. +(I) [14:48:14.673] [000014096]: Pathfinding::Regenerate()... +(I) [14:48:14.947] [000014096]: Pathfinding::Regenerate() Done. +(I) [14:48:14.980] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:2]" finished loading with checksum [3269082004]. +(I) [14:48:14.981] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:4]" finished loading with checksum [3269082004]. +(I) [14:48:15.535] [000014096]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [14:48:15.535] [000014096]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [14:48:15.535] [000014096]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [14:48:15.535] [000014096]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [14:48:15.535] [000014096]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [14:48:15.535] [000014096]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [14:48:15.535] [000014096]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [14:48:15.535] [000014096]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [14:48:15.535] [000014096]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [14:48:15.535] [000014096]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [14:48:15.535] [000014096]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [14:48:15.535] [000014096]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [14:48:15.535] [000014096]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [14:48:15.535] [000014096]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [14:48:15.535] [000014096]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [14:48:15.535] [000014096]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [14:48:15.535] [000014096]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [14:48:15.536] [000014096]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [14:48:15.536] [000014096]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [14:48:15.536] [000014096]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [14:48:15.536] [000014096]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [14:48:15.536] [000014096]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [14:48:15.536] [000014096]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [14:48:15.536] [000014096]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [14:48:15.536] [000014096]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [14:48:15.536] [000014096]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [14:48:15.536] [000014096]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [14:48:15.536] [000014096]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [14:48:15.536] [000014096]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [14:48:15.536] [000014096]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [14:48:15.536] [000014096]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [14:48:15.536] [000014096]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [14:48:15.536] [000014096]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [14:48:15.536] [000014096]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [14:48:15.567] [000014096]: GAME - CreateGEWorld in 3786 ms +(I) [14:48:15.567] [000014096]: SIM -- Setting SyncErrorChecking level to Low +(I) [14:48:15.567] [000014096]: Loading step: [Load Resources from GEWorld] +(I) [14:48:15.731] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [3269082004]. +(I) [14:48:16.357] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:5]" finished loading with checksum [3269082004]. +(I) [14:48:16.357] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:8]" finished loading with checksum [3269082004]. +(I) [14:48:16.447] [000014096]: Loading step: [Sound Banks] +(I) [14:48:16.447] [000014096]: Loading step: [Session] +(I) [14:48:16.447] [000014096]: GAME - SessionSetup +(I) [14:48:16.449] [000014096]: GAME - SessionSetup finished in 1 ms +(I) [14:48:16.449] [000014096]: Loading step: [Player Setup] +(I) [14:48:16.462] [000014096]: GAME -- Recording game +(I) [14:48:16.462] [000014096]: Loading step: [Scenario Lua System] +(I) [14:48:16.508] [000014096]: Loading step: [Team Colour Init] +(I) [14:48:16.508] [000014096]: Loading step: [Race Precaching Event Listener Registration] +(I) [14:48:16.508] [000014096]: Loading step: [Simulation] +(I) [14:48:16.540] [000014096]: LoadWinCondition: - [winconditions\mode_victorypoint] succeeded. +(I) [14:48:16.979] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:2]" finished loading with checksum [3269082004]. +(I) [14:48:16.980] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:4]" finished loading with checksum [3269082004]. +(I) [14:48:17.726] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [3269082004]. +(I) [14:48:18.226] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:8]" finished loading with checksum [3269082004]. +(I) [14:48:18.353] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:5]" finished loading with checksum [3269082004]. +(I) [14:48:18.804] [000014096]: Player [] killed on game tick [0] due to [unused player] +(I) [14:48:18.804] [000014096]: Player [] killed on game tick [0] due to [unused player] +(I) [14:48:18.804] [000014096]: Player [] killed on game tick [0] due to [unused player] +(I) [14:48:18.804] [000014096]: Player [] killed on game tick [0] due to [unused player] +(I) [14:48:18.804] [000014096]: Player [] killed on game tick [0] due to [unused player] +(I) [14:48:18.804] [000014096]: Player [] killed on game tick [0] due to [unused player] +(I) [14:48:18.804] [000014096]: Player [] killed on game tick [0] due to [unused player] +(I) [14:48:18.804] [000014096]: Player [] killed on game tick [0] due to [unused player] +(I) [14:48:18.972] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:2]" finished loading with checksum [3269082004]. +(I) [14:48:18.972] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:4]" finished loading with checksum [3269082004]. +(I) [14:48:19.728] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [3269082004]. +(I) [14:48:20.224] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:8]" finished loading with checksum [3269082004]. +(I) [14:48:20.351] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:5]" finished loading with checksum [3269082004]. +(I) [14:48:20.861] [000014096]: Loading step: [GameUICore System] +(I) [14:48:20.881] [000014096]: Loading step: [UI System] +(I) [14:48:20.881] [000014096]: Loading step: [LUA] +(I) [14:48:20.881] [000014096]: Loading step: [Game Event Listener Registration] +(I) [14:48:20.881] [000014096]: Loading step: [CPU AI] +(I) [14:48:20.891] [000014096]: Loading step: [Scar Init] +(I) [14:48:20.891] [000014096]: Loading step: [FX System] +(I) [14:48:20.891] [000014096]: Loading step: [Cheat Menu] +(I) [14:48:20.895] [000014096]: Loading step: [Scar Start] +(I) [14:48:20.898] [000014096]: Loading step: [Load resources] +(I) [14:48:20.900] [000014096]: Loading step: [PreDisplay] +(I) [14:48:20.900] [000014096]: Loading step: [Free Loading Data] +(I) [14:48:20.900] [000014096]: PreloadResources took 0ms. +(I) [14:48:20.900] [000014096]: Loading step: [MemShrink] +(I) [14:48:20.901] [000014096]: Loading step: [Flush Inventory] +(I) [14:48:20.939] [000014096]: Loading step: [Resolve Impasse Blockers] +(I) [14:48:20.939] [000014096]: Loading step: [Convert OOB Static Entities to Visual Only Objects] +(I) [14:48:20.940] [000014096]: Loading step: [DefaultWorld Begin Play] +(I) [14:48:20.986] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:2]" finished loading with checksum [3269082004]. +(I) [14:48:20.986] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:4]" finished loading with checksum [3269082004]. +(I) [14:48:21.146] [000014096]: Loading step: [Preparing game] +(I) [14:48:21.359] [000014096]: Loading step: [Start Renderer] +(I) [14:48:21.359] [000014096]: Loading step: [FrontEnd simulation initialization] +(I) [14:48:21.359] [000014096]: Loading step: [WPFGFrontEnd loading] +(I) [14:48:21.361] [000014096]: Loading step: [OnEndLoad] +(I) [14:48:21.860] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:3]" finished loading with checksum [3269082004]. +(I) [14:48:21.888] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [3269082004]. +(I) [14:48:22.247] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:8]" finished loading with checksum [3269082004]. +(I) [14:48:22.363] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:5]" finished loading with checksum [3269082004]. +(I) [14:48:22.977] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:2]" finished loading with checksum [3269082004]. +(I) [14:48:22.977] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:4]" finished loading with checksum [3269082004]. +(I) [14:48:23.004] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:3]" finished loading with checksum [3269082004]. +(I) [14:48:23.730] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [3269082004]. +(I) [14:48:24.235] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:8]" finished loading with checksum [3269082004]. +(I) [14:48:24.360] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:5]" finished loading with checksum [3269082004]. +(I) [14:48:24.980] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:2]" finished loading with checksum [3269082004]. +(I) [14:48:24.980] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:4]" finished loading with checksum [3269082004]. +(I) [14:48:25.004] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:3]" finished loading with checksum [3269082004]. +(I) [14:48:25.232] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:7]" finished loading with checksum [3269082004]. +(I) [14:48:25.728] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [3269082004]. +(I) [14:48:26.231] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:8]" finished loading with checksum [3269082004]. +(I) [14:48:26.358] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:5]" finished loading with checksum [3269082004]. +(I) [14:48:26.737] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:7]" finished loading with checksum [3269082004]. +(I) [14:48:26.976] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:2]" finished loading with checksum [3269082004]. +(I) [14:48:26.976] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:4]" finished loading with checksum [3269082004]. +(I) [14:48:27.002] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:3]" finished loading with checksum [3269082004]. +(I) [14:48:27.485] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:6]" finished loading with checksum [3269082004]. +(I) [14:48:27.488] [000022800]: PerformanceRecorder::StartRecording for game size 8 +(I) [14:48:27.488] [000022800]: GAME -- Starting mission: data:scenarios\multiplayer\winter_line_8p_mkii\winter_line_8p_mkii +(I) [14:48:27.488] [000022800]: MEM -- available page 5011 mb, total page 41118 mb +(I) [14:48:27.496] [000022800]: GameApp::SetState : new (Game) old (LoadingGame) +(I) [14:48:27.496] [000022800]: GameApp::SetTargetState : new (Uninitialized) old (Game) +(I) [14:48:27.501] [000022800]: Local user framerate is [0.000000] +(I) [14:48:27.501] [000022800]: Local user MinDelay=[-1ms], MaxDelay=[0ms], AvgDelay=[0ms], minRTT[4294967295ms], maxRTT[0ms], avgRTT[0ms] +(I) [14:48:27.730] [000022800]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [3269082004]. +(I) [14:48:27.738] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c3ac30c9d99d921c7de5d3573dc4387605ca5ea2117a97b855267907f65b87e3 +(I) [14:48:35.010] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=102/218, mdat=58/116, voip=0/0, rchk=0/0, nudg=7/6, Thdr=0/0, Peer=91/224, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=91/112, lb_p=22/6, lb_c=0/0, cast=0/0, cdat=17/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:48:47.025] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f3c148bc03c5554120ed4cf4e7b5aae6657f9afd513043822b12a2b738a24d1a +(I) [14:48:48.000] [000022800]: Local user framerate is [114.232864] +(I) [14:48:48.000] [000022800]: Local user MinDelay=[2ms], MaxDelay=[51ms], AvgDelay=[34ms], minRTT[127ms], maxRTT[346ms], avgRTT[198ms] +(I) [14:48:53.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=44/0, mdat=143/286, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=8/2, lb_c=0/0, cast=0/0, cdat=43/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:49:07.013] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1e205480775425c608c97ea0be354dc8f7f19daba46ee707b529a03a964e6e0e +(I) [14:49:09.004] [000022800]: Local user framerate is [115.159683] +(I) [14:49:09.004] [000022800]: Local user MinDelay=[2ms], MaxDelay=[55ms], AvgDelay=[37ms], minRTT[127ms], maxRTT[346ms], avgRTT[194ms] +(I) [14:49:30.003] [000022800]: Local user framerate is [116.182571] +(I) [14:49:30.003] [000022800]: Local user MinDelay=[42ms], MaxDelay=[57ms], AvgDelay=[49ms], minRTT[167ms], maxRTT[228ms], avgRTT[188ms] +(I) [14:49:36.005] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=113/0, mdat=344/688, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=22/6, lb_c=0/0, cast=0/0, cdat=112/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:49:38.014] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=41b212411707a7fc0234cd21f04388f8325bc6a55396edba61af7cd23aad3c7c +(I) [14:49:51.005] [000022800]: Local user framerate is [112.466255] +(I) [14:49:51.005] [000022800]: Local user MinDelay=[39ms], MaxDelay=[64ms], AvgDelay=[51ms], minRTT[122ms], maxRTT[243ms], avgRTT[184ms] +(I) [14:49:54.002] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=69/0, mdat=144/288, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=8/2, lb_c=0/0, cast=0/0, cdat=67/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:49:58.021] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e6d6ced89660e52982958c25910a95ac4d31599831997df41d2bf8a57652832f +(I) [14:50:12.014] [000022800]: Local user framerate is [109.189079] +(I) [14:50:12.014] [000022800]: Local user MinDelay=[39ms], MaxDelay=[64ms], AvgDelay=[51ms], minRTT[122ms], maxRTT[243ms], avgRTT[183ms] +(I) [14:50:18.011] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1babe161c3f2591e4c21da8a4646971aae44d01556d8b553cac4687b706e8693 +(I) [14:50:33.026] [000022800]: Local user framerate is [110.811203] +(I) [14:50:33.026] [000022800]: Local user MinDelay=[40ms], MaxDelay=[57ms], AvgDelay=[47ms], minRTT[121ms], maxRTT[236ms], avgRTT[178ms] +(I) [14:50:37.003] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=117/0, mdat=344/688, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=22/6, lb_c=0/0, cast=0/0, cdat=116/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:50:38.014] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=81d2ec8da296f8c4ec45bb086e8dfa2be586cd319878024fa87bd0d09c4c5474 +(I) [14:50:48.191] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6c11bb0197514211b550f70e94c74f59220b64c67ec139af279c84d3997205af +(I) [14:50:53.796] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c8b21b4b53456134bf1a274e8ddde7c68fb338583bc59528dcd13f2c972b236e +(I) [14:50:54.025] [000022800]: Local user framerate is [103.308670] +(I) [14:50:54.025] [000022800]: Local user MinDelay=[35ms], MaxDelay=[69ms], AvgDelay=[53ms], minRTT[115ms], maxRTT[260ms], avgRTT[173ms] +(I) [14:50:55.008] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=76/0, mdat=144/288, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=9/2, lb_c=0/0, cast=0/0, cdat=69/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:50:59.888] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0b5eaf423311bed195fb143d68d5d8491d62e10cfa9e436b31090e60a1bec07e +(I) [14:51:05.593] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ae7a7514beac942296b7995f15107367f3d59aff6ed2861b162537f6deee8688 +(I) [14:51:14.208] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8b07f4c3d8631121da438a112f7c80c873e5fb60b8ef7e295e793694256737c8 +(I) [14:51:15.005] [000022800]: Local user framerate is [90.390961] +(I) [14:51:15.005] [000022800]: Local user MinDelay=[35ms], MaxDelay=[77ms], AvgDelay=[55ms], minRTT[112ms], maxRTT[260ms], avgRTT[174ms] +(I) [14:51:27.993] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=95447591d08f1ccb151b04f0c01db0ca689a603d56cabbe69e1586fdcff50ba0 +(I) [14:51:34.850] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a2d37352d2f8dd399a75297c4c19c9819ca146d4598d1a2f62d6ff8c6f2f2382 +(I) [14:51:36.001] [000022800]: Local user framerate is [91.713310] +(I) [14:51:36.001] [000022800]: Local user MinDelay=[41ms], MaxDelay=[69ms], AvgDelay=[57ms], minRTT[121ms], maxRTT[232ms], avgRTT[174ms] +(I) [14:51:38.008] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=172/0, mdat=344/688, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=22/6, lb_c=0/0, cast=0/0, cdat=163/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:51:46.510] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=56a09d8e6604212f668de05d18dd91e50671c51eb256d5a94ebbd207a111b21d +(I) [14:51:56.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=64/0, mdat=144/288, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=8/2, lb_c=0/0, cast=0/0, cdat=60/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:51:57.006] [000022800]: Local user framerate is [89.601433] +(I) [14:51:57.006] [000022800]: Local user MinDelay=[41ms], MaxDelay=[71ms], AvgDelay=[59ms], minRTT[121ms], maxRTT[275ms], avgRTT[173ms] +(I) [14:52:02.763] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=42e43e28c1a599fd7b80d2f833c48721d0500c59365f77417a29f0287781b520 +(I) [14:52:13.903] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f63b9140f373588acde11b730f574940ac25e4a77ef76b321b3b8677ff9222a4 +(I) [14:52:18.010] [000022800]: Local user framerate is [96.311470] +(I) [14:52:18.010] [000022800]: Local user MinDelay=[41ms], MaxDelay=[74ms], AvgDelay=[60ms], minRTT[121ms], maxRTT[284ms], avgRTT[172ms] +(I) [14:52:25.220] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6d61102d32914eb07b06dd3ff4645862fa10b77d7b0cb209b3dbb9c5edc3aa21 +(I) [14:52:33.744] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3358b3b57fbd375264feb3c6f341c5cbd43446e8bb552b6d890ce24f122e94e8 +(I) [14:52:39.002] [000022800]: Local user framerate is [94.276428] +(I) [14:52:39.002] [000022800]: Local user MinDelay=[50ms], MaxDelay=[73ms], AvgDelay=[61ms], minRTT[117ms], maxRTT[285ms], avgRTT[173ms] +(I) [14:52:39.006] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=149/0, mdat=344/688, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=22/6, lb_c=0/0, cast=0/0, cdat=143/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:52:47.515] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5a01d97ade1b7a4207b1792c891ce75d8f65d78c31a5f6c4e62c1b9dac635dbc +(I) [14:52:54.988] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ad5ad3a83a42cb5fcb6a54967a043c668642e5f8f5e9fdcbba0636783fe29be3 +(I) [14:52:57.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=67/0, mdat=144/288, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=8/2, lb_c=0/0, cast=0/0, cdat=64/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:53:00.001] [000022800]: Local user framerate is [92.500000] +(I) [14:53:00.001] [000022800]: Local user MinDelay=[45ms], MaxDelay=[76ms], AvgDelay=[61ms], minRTT[117ms], maxRTT[301ms], avgRTT[179ms] +(I) [14:53:00.504] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8d12cc032a4e3cf0fa385e207a8635835bd683ff5cd6f165b09bd36a2784b4ad +(I) [14:53:10.006] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=98edd09a21bc295fa45f4ff0179b8223fdf1b80fa531dc2d52759bc9c4bdf770 +(I) [14:53:21.001] [000022800]: Local user framerate is [88.701210] +(I) [14:53:21.001] [000022800]: Local user MinDelay=[45ms], MaxDelay=[76ms], AvgDelay=[60ms], minRTT[117ms], maxRTT[301ms], avgRTT[177ms] +(I) [14:53:21.250] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b3547259ebde98daef3094f0d796b7a7293a3f71fb4905b45ffe733831ccfd7a +(I) [14:53:28.134] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=dea4449e178a2596574db8c217bd78fbcfa03ae260d70a5c8bd5aba62e995f15 +(I) [14:53:36.880] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=941f8346ae36d56d66d365d85ca0eabef678d03ba977d2fcfdfa198d9e97ebd5 +(I) [14:53:40.004] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=141/0, mdat=344/688, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=22/6, lb_c=0/0, cast=0/0, cdat=131/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:53:42.004] [000022800]: Local user framerate is [89.632065] +(I) [14:53:42.004] [000022800]: Local user MinDelay=[50ms], MaxDelay=[81ms], AvgDelay=[61ms], minRTT[107ms], maxRTT[231ms], avgRTT[167ms] +(I) [14:53:43.982] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b37cd09f1b04f98020df994291948228250caa07ed840f85fbc57158caabacd8 +(I) [14:53:47.711] [000023200]: Read bytes [0,"MatchReceivedChatMessage",3264,[72076,"press middle","press middle",3,5872898]] +(I) [14:53:47.722] [000022800]: Received chat message { press middle } +(I) [14:53:47.722] [000022800]: Starting FilterChatJob for message { press middle } +(I) [14:53:47.768] [000022800]: Posting chat event from FilterChatJob for message { press middle } +(I) [14:53:48.252] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:53:48.252] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:53:48.252] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:53:48.252] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:53:48.252] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:53:48.252] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:53:48.252] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:53:48.252] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:53:48.252] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:53:48.252] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:53:48.252] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:53:48.252] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:53:48.252] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:53:48.252] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:53:48.252] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:53:48.252] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:53:48.252] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:53:48.252] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:53:48.252] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:53:48.252] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:53:48.252] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:53:48.252] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:53:48.252] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:53:48.252] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:53:48.252] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:53:48.252] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:53:48.252] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:53:48.537] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:53:48.537] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:53:48.537] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:53:48.537] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:53:48.537] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:53:48.537] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:53:48.537] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [14:53:56.483] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=db5ce069df1a3af3f626dbba249363ee7264b7cfac0ad8cebfb623f4901f82a5 +(I) [14:53:58.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=66/4, mdat=143/286, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/4, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/2, lb_p=9/2, lb_c=0/0, cast=0/0, cdat=64/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:54:01.414] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2c92f6853c6d8bd4e90709fd13d1d2688b8d84f8987e565d5de85ce8392c4e8b +(I) [14:54:03.003] [000022800]: Local user framerate is [83.416626] +(I) [14:54:03.003] [000022800]: Local user MinDelay=[46ms], MaxDelay=[81ms], AvgDelay=[61ms], minRTT[107ms], maxRTT[287ms], avgRTT[170ms] +(I) [14:54:11.336] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=61b4204d356ea7aa964d721e581a5eb0784ca318ed4d48b371789fdeec2504d8 +(I) [14:54:22.675] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=65e66ecb9da0df3059abce31653bea9f5a7355805c80fef306af1ac19b785ce3 +(I) [14:54:24.029] [000022800]: Local user framerate is [77.776665] +(I) [14:54:24.029] [000022800]: Local user MinDelay=[38ms], MaxDelay=[81ms], AvgDelay=[61ms], minRTT[107ms], maxRTT[287ms], avgRTT[168ms] +(I) [14:54:27.807] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=312b5ab8b34c2ed0924b9a5a13e3cd191ffb6f15bf0a8c1586e3a309a2fe4ebe +(I) [14:54:33.251] [000023200]: Read bytes [0,"MatchReceivedChatMessage",3264,[72076,"press","press",3,5872898]] +(I) [14:54:33.253] [000022800]: Received chat message { press } +(I) [14:54:33.253] [000022800]: Starting FilterChatJob for message { press } +(I) [14:54:33.305] [000022800]: Posting chat event from FilterChatJob for message { press } +(I) [14:54:40.925] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=54761e82008261c76bfb56daa4f34cb7512a73f9c0178004228a7578029b517c +(I) [14:54:41.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=143/4, mdat=344/688, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/4, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/2, lb_p=22/6, lb_c=0/0, cast=0/0, cdat=137/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:54:42.588] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=105e0ec0dfa35d8c15de37e4beda269f6c361633a81357a13bdc619830393941 +(I) [14:54:45.029] [000022800]: Local user framerate is [76.235199] +(I) [14:54:45.029] [000022800]: Local user MinDelay=[49ms], MaxDelay=[79ms], AvgDelay=[64ms], minRTT[120ms], maxRTT[241ms], avgRTT[163ms] +(I) [14:54:57.204] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c2d93ec796b2ec197b69dca220bf7b57341d2ee8c6b85b0127080412e4b72116 +(I) [14:54:59.005] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=78/0, mdat=144/288, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=8/2, lb_c=0/0, cast=0/0, cdat=74/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:55:06.043] [000022800]: Local user framerate is [78.834229] +(I) [14:55:06.043] [000022800]: Local user MinDelay=[46ms], MaxDelay=[79ms], AvgDelay=[64ms], minRTT[120ms], maxRTT[248ms], avgRTT[166ms] +(I) [14:55:06.197] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5c1e2586d67240de52396a66cebc8a4b9674ab894c32702969eaeb0b10ba5025 +(I) [14:55:08.949] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f076d45494e60bd2e0cefd3f4f83258ae5cf71ed1c9476a6a6bd3f936b38157a +(I) [14:55:11.893] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a562075937dfa6325c4a9f0db78898c43653f0915eb319b0cc52e1cd21d43114 +(I) [14:55:16.411] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=01b67c33bc4e754e098188cd34fb8cc48974ccefed4f9e5728863403e4f6f7a6 +(I) [14:55:23.342] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=35ff6a2be3e165fbeeaa1257f9fc12df89eb2841fd170e85ca4adb1be22cf199 +(I) [14:55:27.002] [000022800]: Local user framerate is [75.642433] +(I) [14:55:27.002] [000022800]: Local user MinDelay=[46ms], MaxDelay=[88ms], AvgDelay=[65ms], minRTT[119ms], maxRTT[248ms], avgRTT[166ms] +(I) [14:55:31.652] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fb6e63b8c27bc43cde6976a64d79ce4ed8c4054431870bb8e0e2a9fe3b8a89d0 +(I) [14:55:38.463] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=26d3425aa431be9381ff3a77c3d3c8f5401d134a1b7d3f2346a4213bff0ba1ce +(I) [14:55:42.004] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=179/0, mdat=344/688, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=22/6, lb_c=0/0, cast=0/0, cdat=160/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:55:44.589] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8393d697acc9f9fa470b3194ad7fe20c12359d6b2c14b14655217cf82e08cb3e +(I) [14:55:48.001] [000022800]: Local user framerate is [74.646263] +(I) [14:55:48.001] [000022800]: Local user MinDelay=[52ms], MaxDelay=[81ms], AvgDelay=[67ms], minRTT[116ms], maxRTT[243ms], avgRTT[165ms] +(I) [14:55:59.109] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1646c1567c512105a01dc2b3efc3390e3361b7481a79007e1612033518cbe329 +(I) [14:56:00.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=70/0, mdat=144/288, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=8/2, lb_c=0/0, cast=0/0, cdat=66/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:56:00.978] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2f3654a5818e04df759932cb35f203ce8bbc900a395b49ba7945b940298451aa +(I) [14:56:07.051] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8377facf0e08fd9b6ca42e3657755d9e709c943e923f79444e68ea47ac7ce607 +(I) [14:56:09.008] [000022800]: Local user framerate is [73.777863] +(I) [14:56:09.008] [000022800]: Local user MinDelay=[48ms], MaxDelay=[85ms], AvgDelay=[68ms], minRTT[116ms], maxRTT[248ms], avgRTT[166ms] +(I) [14:56:10.743] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f34e684bd7545c7b41e511651f09d04c661157897b3297c918c26fef84c1ca99 +(I) [14:56:14.175] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3ef06394aec0c7ab0a04960685b5d2e5014c3d66ba45db8ade8d719c87468c74 +(I) [14:56:19.487] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=be7a90072826ebe5ad752d0b538b1215132727015699c5d9d5b24b8850c56d2d +(I) [14:56:28.660] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=568a180f6cac993427f6d3b6b1eec50aaaf5b811cf9d9357634413db143025d6 +(I) [14:56:30.009] [000022800]: Local user framerate is [72.092789] +(I) [14:56:30.009] [000022800]: Local user MinDelay=[60ms], MaxDelay=[84ms], AvgDelay=[72ms], minRTT[122ms], maxRTT[286ms], avgRTT[166ms] +(I) [14:56:32.182] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=74796090230bdfca115e3ae3c75e289f8314e760aeac682e0422a740e02a8aee +(I) [14:56:34.121] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c2a30bbb9b52eb6d3a1d2ca16e252ba7ef6e06d581f5b0418f52ef96aeeb302c +(I) [14:56:40.734] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3691d957df9c7bac6cb19743cfd60093da1886c0ac97a851037431ae59dcdb17 +(I) [14:56:43.006] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=168/0, mdat=344/688, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=22/6, lb_c=0/0, cast=0/0, cdat=148/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:56:43.363] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=04847c0e2847bf7e257dd854dd3a13e0c7101c67688a0b17eee33bf9449b4470 +(I) [14:56:48.079] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4890a9976cf3dd6c335b95bad514ad9095a155848b3adbfd80a4ad8882919837 +(I) [14:56:50.493] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cf251c92ae27801daba3f0016232aec03472eb270fdb0187f08cbb0209dd6c38 +(I) [14:56:51.001] [000022800]: Local user framerate is [72.956223] +(I) [14:56:51.001] [000022800]: Local user MinDelay=[51ms], MaxDelay=[87ms], AvgDelay=[71ms], minRTT[118ms], maxRTT[286ms], avgRTT[167ms] +(I) [14:56:54.080] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=da40dcc3793366ad2d480d3f340850c3b19f8f64fb6df0a63fde982869331b1d +(I) [14:57:01.005] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=78/0, mdat=144/288, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=8/2, lb_c=0/0, cast=0/0, cdat=71/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:57:02.033] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a78a2087535222b3e95779cbf7610b4df7e4d7d7ab0f54cc5ff4d3f116e7f92f +(I) [14:57:08.751] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=efcf413dbba34269704f683ccb16d6f7542b233e8f963aa5d020309a3399eb19 +(I) [14:57:12.011] [000022800]: Local user framerate is [70.868103] +(I) [14:57:12.011] [000022800]: Local user MinDelay=[48ms], MaxDelay=[91ms], AvgDelay=[71ms], minRTT[117ms], maxRTT[286ms], avgRTT[168ms] +(I) [14:57:12.953] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=458b0181ca9cd3a5fb439fa8c6b9683f868937b700624fb0c838f6c01b1f94fd +(I) [14:57:16.300] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0e678fb30f656360d9f5a06d5b9296bae816f792876731de4372ed9e68e724b7 +(I) [14:57:18.552] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=825d8af76291c8506e6f55f687234cee11bbffc452a780d6817aba4066634bb3 +(I) [14:57:21.601] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=33582a3431c61ba8aaeb76efe81fcca997f7545f2ee4edfb439b6249ae231cb1 +(I) [14:57:27.780] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=82268dad698f9cd230db0729624a4f8c67c64326695d4a536af56153f726272a +(I) [14:57:31.485] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=dbc942e2825e3366b0d6e763faa5141bfbf70edf72ed8f3ab1da8ffe89c1f356 +(I) [14:57:33.012] [000022800]: Local user framerate is [62.515610] +(I) [14:57:33.012] [000022800]: Local user MinDelay=[59ms], MaxDelay=[87ms], AvgDelay=[73ms], minRTT[119ms], maxRTT[236ms], avgRTT[162ms] +(I) [14:57:40.903] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=80bc16a325829801f0bc1e4a3ccc007347a2786a5d70e0812a14f8526386304f +(I) [14:57:44.002] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=162/0, mdat=344/688, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=23/6, lb_c=0/0, cast=0/0, cdat=147/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:57:44.310] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fff0cf74504c8e5552d657556abcb259b19b7d81cb440befe7cdf1b729802fde +(I) [14:57:48.902] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=dfd5a23c50b44fb48da3167380766e519c58ee515217e624ebb75982900d9a3d +(I) [14:57:50.314] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=39334af5fbf6d483573d74ad8f2d73d30c280b3118e56fa21afb426e710a2a86 +(I) [14:57:52.899] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=60027e8f0e7b7d57903668fa85ff3879e1d2f122a2230894274d2a0851f09a84 +(I) [14:57:54.008] [000022800]: Local user framerate is [64.974007] +(I) [14:57:54.008] [000022800]: Local user MinDelay=[57ms], MaxDelay=[108ms], AvgDelay=[74ms], minRTT[128ms], maxRTT[223ms], avgRTT[170ms] +(I) [14:58:02.006] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=54/0, mdat=144/288, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=8/2, lb_c=0/0, cast=0/0, cdat=51/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:58:04.048] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=76283dcadf7cff862b17feda2cc5c2af148267cfc6b8319df8a3c957541a1bbb +(I) [14:58:09.781] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=43ba3443e316cfa0ae3dd954c82d9ca5875da211dd6d45d2b3aad122438e8f43 +(I) [14:58:15.007] [000022800]: Local user framerate is [65.127197] +(I) [14:58:15.007] [000022800]: Local user MinDelay=[53ms], MaxDelay=[108ms], AvgDelay=[74ms], minRTT[115ms], maxRTT[233ms], avgRTT[159ms] +(I) [14:58:15.552] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=265af5afc11de36622887bad428b9d16eb92d7265720789dd16ac84d2daec476 +(I) [14:58:27.535] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f90c73182c65d6072961bbf789ea9909efa45174243916746d96dd26602873c7 +(I) [14:58:36.015] [000022800]: Local user framerate is [74.942505] +(I) [14:58:36.015] [000022800]: Local user MinDelay=[60ms], MaxDelay=[87ms], AvgDelay=[74ms], minRTT[135ms], maxRTT[239ms], avgRTT[158ms] +(I) [14:58:38.666] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=03bd3cb86b8ca79a2fb6b5db751a77029652bbddaaff7ff42afa41ac8274385c +(I) [14:58:42.806] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2b670789b60ba3df38f3aee34cdd91f2b4696bf3673706355184cc2092e059e2 +(I) [14:58:45.005] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=132/0, mdat=343/686, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=22/6, lb_c=0/0, cast=0/0, cdat=126/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:58:51.412] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1193f2c837db1ef84ac58986f43abec0a6f14a6d85875be2edcfca53e807a0df +(I) [14:58:57.016] [000022800]: Local user framerate is [75.127457] +(I) [14:58:57.016] [000022800]: Local user MinDelay=[51ms], MaxDelay=[87ms], AvgDelay=[72ms], minRTT[122ms], maxRTT[239ms], avgRTT[162ms] +(I) [14:58:59.546] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0ef25679014a19a7446d1fb35ba9a8893718da7e04b4c8af1a3b3ba39ae4f0cb +(I) [14:59:03.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=36/0, mdat=144/288, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=8/2, lb_c=0/0, cast=0/0, cdat=35/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:59:12.946] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=406d9fe0a326ab4b6ebbf0bb441955c0818d16feb6e8e3ed6869875ef04215d6 +(I) [14:59:18.024] [000022800]: Local user framerate is [72.471008] +(I) [14:59:18.024] [000022800]: Local user MinDelay=[45ms], MaxDelay=[87ms], AvgDelay=[71ms], minRTT[119ms], maxRTT[239ms], avgRTT[160ms] +(I) [14:59:24.935] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=75d0700362ed11c2e43987acc65fbe94860e16318243f41bc4028a738d07c20a +(I) [14:59:32.047] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2d4cb3c7745044060e35aa2b01bd8a2648110eff7369fc3479f2be4af384a5a6 +(I) [14:59:39.038] [000022800]: Local user framerate is [73.289009] +(I) [14:59:39.038] [000022800]: Local user MinDelay=[36ms], MaxDelay=[88ms], AvgDelay=[69ms], minRTT[120ms], maxRTT[233ms], avgRTT[161ms] +(I) [14:59:44.720] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1238e51a7f9e75ce2131574d5cadf9299ad1767900165ad7fcf08852736707d5 +(I) [14:59:46.005] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=147/0, mdat=344/688, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=22/6, lb_c=0/0, cast=0/0, cdat=139/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [14:59:49.986] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f9445074a27b8c011e13a3010414708836da9603fc62367de1ef0eea12730e93 +(I) [14:59:54.960] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2fff461433194cfc883850d86c4cec2969a112ea396b2f7d4fced864b83ee41d +(I) [14:59:59.600] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=53bae31937a7cd3240c2f64376a4a65c5e03ff8fec2a790e9239cd76c31024f6 +(I) [15:00:00.002] [000022800]: Local user framerate is [67.393257] +(I) [15:00:00.002] [000022800]: Local user MinDelay=[36ms], MaxDelay=[89ms], AvgDelay=[71ms], minRTT[120ms], maxRTT[245ms], avgRTT[163ms] +(I) [15:00:04.006] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=74/0, mdat=144/288, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=10/3, lb_c=0/0, cast=0/0, cdat=70/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:00:06.615] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c2f78806f96799c7d34cf723186f262c45411a45cd2eae79cbe4bea2f7b13f9d +(I) [15:00:11.787] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0490040457adb399677caad5650a62ffe7f73c68b87bf9e70fb8c34d050eab3c +(I) [15:00:21.001] [000022800]: Local user framerate is [60.634838] +(I) [15:00:21.001] [000022800]: Local user MinDelay=[36ms], MaxDelay=[104ms], AvgDelay=[72ms], minRTT[115ms], maxRTT[245ms], avgRTT[163ms] +(I) [15:00:31.019] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=288cd465c92a1de10cafd31426192c51e61ac75d90d328b7e7a12d2d8ec1283f +(I) [15:00:42.012] [000022800]: Local user framerate is [71.364319] +(I) [15:00:42.012] [000022800]: Local user MinDelay=[55ms], MaxDelay=[86ms], AvgDelay=[73ms], minRTT[117ms], maxRTT[273ms], avgRTT[154ms] +(I) [15:00:47.003] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=133/0, mdat=344/688, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=21/5, lb_c=0/0, cast=0/0, cdat=126/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:00:48.112] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=999c6897962cd09d51b8369d9cd9e182dc30f17a80295a7521c4b44274d8a24a +(I) [15:00:58.371] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8edeab1b23b581f748a81b81909197bd79f4cd608820806bd78d77f350e33cb6 +(I) [15:01:01.352] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=323c43fa776f1e2fbee57ee51348b25e828eaa6b94720d8f6693b54108bd3445 +(I) [15:01:03.001] [000022800]: Local user framerate is [72.739090] +(I) [15:01:03.001] [000022800]: Local user MinDelay=[55ms], MaxDelay=[96ms], AvgDelay=[74ms], minRTT[117ms], maxRTT[274ms], avgRTT[158ms] +(I) [15:01:04.357] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3898b950eda9aa37e4058919bb741c614b670edeaf5a8307a581c0d1ac237648 +(I) [15:01:05.010] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=93/0, mdat=144/288, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=11/4, lb_c=0/0, cast=0/0, cdat=91/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:01:13.348] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d1f68a980f81f695470e9a7d2643295a238b9ffbe732b7140828c771d97c09cc +(I) [15:01:24.006] [000022800]: Local user framerate is [73.713142] +(I) [15:01:24.006] [000022800]: Local user MinDelay=[52ms], MaxDelay=[96ms], AvgDelay=[74ms], minRTT[117ms], maxRTT[281ms], avgRTT[158ms] +(I) [15:01:24.539] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fde45be514f926415552b508d2a673b647a5547f3f47d9fb1594ee8756084922 +(I) [15:01:38.248] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ce69ae861263d4127b2dbadee601c8651dca50beb997599d16cda5e659f0a57e +(I) [15:01:44.882] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4e253fd763bdb7e8c84acb14755a100426989b23fd1e784f6b401701fe5d44c0 +(I) [15:01:45.000] [000022800]: Local user framerate is [76.030991] +(I) [15:01:45.000] [000022800]: Local user MinDelay=[51ms], MaxDelay=[83ms], AvgDelay=[67ms], minRTT[116ms], maxRTT[286ms], avgRTT[158ms] +(I) [15:01:48.002] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=148/0, mdat=344/688, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=19/4, lb_c=0/0, cast=0/0, cdat=144/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:01:50.874] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2a81c377f7c964da73da73b46dbef8d4966c1c28297d190b8d4013f07170481d +(I) [15:01:53.303] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2ddea2d2adc81e05233f51b436454220920c45ada411cafa0006be180ddf5022 +(I) [15:01:57.522] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2a0ffe791b6a4bdf6a683e1afee5daa545a6cc5cc5c3c93914647d631a2046c1 +(I) [15:02:00.508] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1eb6f64bdd84a82b2c2f72894d118dfeb71c9fbe71f973cfb0a4ee6f55ec4bc6 +(E) [15:02:03.615] [000022800]: TelemetryRow::addString : Key: (ability_name), Value (34) is larger than Column (32) +(I) [15:02:06.003] [000022800]: Local user framerate is [69.022385] +(I) [15:02:06.003] [000022800]: Local user MinDelay=[49ms], MaxDelay=[83ms], AvgDelay=[66ms], minRTT[116ms], maxRTT[286ms], avgRTT[163ms] +(I) [15:02:06.008] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=68/0, mdat=144/288, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=11/4, lb_c=0/0, cast=0/0, cdat=65/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:02:06.135] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a187ac4821505d2a238efa7cb51a4fce0b7f2f52a514104478b34e811c05092c +(I) [15:02:07.079] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=54eea18e3ab2f9170efbcb4e8cccfbb8c0df80190c1be9f473c4c3ad690c3628 +(I) [15:02:08.648] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=72350589a9313074b0038e21eadfda2db38bcc8cce1f39d32f6d563864ef2927 +(I) [15:02:10.558] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7d3be33debbeb85a492398a6a81e5693b8706f9f5beb85591b1a597563a99396 +(I) [15:02:13.018] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d288b3c6f8309254912a367b4aae12ac27b76f1235afa4b7cac8d25d4dc82633 +(I) [15:02:16.713] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b9b7bc504ed3dd76a70e86907ad3a952eac63916f2229091f698815521397123 +(I) [15:02:22.048] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=bf8425ddb15293b510980b013952938e1615e690b9d7cdccc6081e1d4ef0dff1 +(I) [15:02:23.719] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7b3943dcb1cd3e5947b6bd3a3bcd0507a2e644ef2bfa0e9f63c8a03b1b82b9f6 +(I) [15:02:27.013] [000022800]: Local user framerate is [69.532616] +(I) [15:02:27.013] [000022800]: Local user MinDelay=[47ms], MaxDelay=[83ms], AvgDelay=[65ms], minRTT[116ms], maxRTT[287ms], avgRTT[166ms] +(I) [15:02:43.018] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=dac10eeeeec6ebf6d1103fc131e3fd2763af4241192f32a90fae6ceb7bf20224 +(I) [15:02:48.035] [000022800]: Local user framerate is [68.929321] +(I) [15:02:48.035] [000022800]: Local user MinDelay=[51ms], MaxDelay=[89ms], AvgDelay=[71ms], minRTT[126ms], maxRTT[165ms], avgRTT[151ms] +(I) [15:02:49.003] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=146/2, mdat=343/686, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/2, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/1, lb_p=21/5, lb_c=0/0, cast=0/0, cdat=138/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:03:01.506] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=faf9b670a24c9dbf85a070a89580669ff054e229c3f018c01d08812d891e8cca +(I) [15:03:05.485] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5456ce8d53be66e456d5cb38f8556d3f047b72049ae4e1a3e0b830623d79fc98 +(I) [15:03:07.004] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=64/0, mdat=144/288, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=9/3, lb_c=0/0, cast=0/0, cdat=58/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:03:09.038] [000022800]: Local user framerate is [62.109627] +(I) [15:03:09.038] [000022800]: Local user MinDelay=[51ms], MaxDelay=[90ms], AvgDelay=[71ms], minRTT[116ms], maxRTT[236ms], avgRTT[153ms] +(I) [15:03:15.200] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1473e23aa475b7fe0486377d7913603581348ae651410bfd7915281cdea36ade +(I) [15:03:25.702] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2a0da8b4817ceaca0cfe8bec6c7db395c8ab3fc7621c51231129b7b63d0b06b6 +(I) [15:03:30.051] [000022800]: Local user framerate is [58.447075] +(I) [15:03:30.051] [000022800]: Local user MinDelay=[60ms], MaxDelay=[87ms], AvgDelay=[74ms], minRTT[137ms], maxRTT[150ms], avgRTT[144ms] +(I) [15:03:30.076] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fd6efc50283671afe2a620419f8ceee3db6a2350f784016ffaca47e1de5f1f84 +(I) [15:03:35.078] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=162ea24c85021869156a7d2e7e7e17cddc319ce490ca3d0beb91e1f379ff971f +(I) [15:03:50.006] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=181/0, mdat=344/688, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=22/6, lb_c=0/0, cast=0/0, cdat=169/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:03:51.005] [000022800]: Local user framerate is [67.769501] +(I) [15:03:51.005] [000022800]: Local user MinDelay=[56ms], MaxDelay=[95ms], AvgDelay=[75ms], minRTT[116ms], maxRTT[234ms], avgRTT[151ms] +(I) [15:03:55.024] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=07e0c8eee1bce24eb7d3b3e7a53ad7fd9e1c04ae65f2349bef1d5d6bc216186d +(I) [15:04:01.852] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=28ef6d7cbe87934d4a6c019d8eb0bc68253d14ae28a133686315408514f31ae2 +(I) [15:04:08.002] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=94/0, mdat=144/288, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=9/2, lb_c=0/0, cast=0/0, cdat=88/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:04:09.490] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f59f882184d6d0f3dd58486384131c34167b38258e40b2799fc73184f851c18b +(I) [15:04:12.012] [000022800]: Local user framerate is [67.699997] +(I) [15:04:12.012] [000022800]: Local user MinDelay=[54ms], MaxDelay=[95ms], AvgDelay=[75ms], minRTT[116ms], maxRTT[234ms], avgRTT[151ms] +(I) [15:04:19.161] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=edb84ea1cfe38e454964ab970738ba4d9dbe459eef548180598fe5eb8db5f644 +(I) [15:04:24.477] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=af6c9ffe9b4d69551cd0b4bdac309588c9b9f131e6fa7cff5726ad35be2489e3 +(I) [15:04:33.008] [000022800]: Local user framerate is [65.486900] +(I) [15:04:33.008] [000022800]: Local user MinDelay=[53ms], MaxDelay=[86ms], AvgDelay=[71ms], minRTT[144ms], maxRTT[201ms], avgRTT[154ms] +(I) [15:04:33.986] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7b29bb44f02b375b30a9492f98b9b2c06228552bb2e27ee86a97cbc4f9d7caac +(I) [15:04:34.856] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=579105c8fce515bf9010f45e89a2a2fffa7bef49fca1534ff3fdfd62f150afe4 +(I) [15:04:44.017] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3d3d91a4dee7cb7aec222ffd4cedb0668947e0dc449c951aaba2d7bab97c29da +(I) [15:04:48.256] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=74ebeef33dbb0d8d6b1bb82400d1b39e09b0ec85cc34b20b26b9e955a3ca45b0 +(I) [15:04:51.009] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=178/0, mdat=344/688, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=21/6, lb_c=0/0, cast=0/0, cdat=169/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:04:54.009] [000022800]: Local user framerate is [64.645050] +(I) [15:04:54.009] [000022800]: Local user MinDelay=[52ms], MaxDelay=[88ms], AvgDelay=[69ms], minRTT[117ms], maxRTT[284ms], avgRTT[163ms] +(I) [15:04:55.366] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8d6d36afe5aab48c180d22383e424dd89365954bc692be6bbb2a7c1eb119a2b3 +(I) [15:05:03.967] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d9f3944b1b3367ff6e771bfc8a226aa23a1d74dbe473fb2543085d375fd04a22 +(I) [15:05:09.009] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=82/0, mdat=144/288, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=9/2, lb_c=0/0, cast=0/0, cdat=77/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:05:09.999] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3c7f43897e4f2ab5bb14487c8848cabb5531a03cb8c1d12e65d93603e273218e +(I) [15:05:15.009] [000022800]: Local user framerate is [61.225506] +(I) [15:05:15.009] [000022800]: Local user MinDelay=[51ms], MaxDelay=[90ms], AvgDelay=[70ms], minRTT[117ms], maxRTT[284ms], avgRTT[162ms] +(I) [15:05:16.007] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=387e166a2e9a60d52cacab33a47f9b8564a888c736172036712fe7fa4f88d700 +(I) [15:05:21.153] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fd919950c67f89f2c879d9b51ad14a9c49bd0fcb209a9a94f5625819bbdb6631 +(I) [15:05:28.884] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3de49a759bc07e2a4b2280d33495b199424fd62dea033ea0e5ec43775b76c6b1 +(I) [15:05:36.008] [000022800]: Local user framerate is [58.391239] +(I) [15:05:36.008] [000022800]: Local user MinDelay=[62ms], MaxDelay=[92ms], AvgDelay=[76ms], minRTT[118ms], maxRTT[256ms], avgRTT[164ms] +(I) [15:05:36.140] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=eca7ba0b7ea5c3243584179808cdeba8a00a3bc5889b5e5e84f65f1bbb81a396 +(I) [15:05:52.008] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=185/0, mdat=344/688, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=22/6, lb_c=0/0, cast=0/0, cdat=177/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:05:54.399] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4cba620b5a79eb428103496719c640d526152f3ad70634e18ce0733b7e13cf27 +(I) [15:05:57.007] [000022800]: Local user framerate is [60.578793] +(I) [15:05:57.007] [000022800]: Local user MinDelay=[56ms], MaxDelay=[108ms], AvgDelay=[78ms], minRTT[117ms], maxRTT[264ms], avgRTT[151ms] +(I) [15:06:10.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=63/0, mdat=144/288, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=8/2, lb_c=0/0, cast=0/0, cdat=61/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:06:14.021] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f5c4b66cf6affdff2f94dac2335822bf9946ea4ed93be7b5332778e3413cd540 +(I) [15:06:18.000] [000022800]: Local user framerate is [61.128601] +(I) [15:06:18.000] [000022800]: Local user MinDelay=[27ms], MaxDelay=[108ms], AvgDelay=[78ms], minRTT[116ms], maxRTT[264ms], avgRTT[149ms] +(I) [15:06:24.157] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=db21d67c8cd223fe44e2c19dd16e5e7b568628db86184542c85d07bca448a26c +(I) [15:06:30.549] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e7348da6d2cbd34273b48ccf46c82d5eb2f8306a226c60c900c2da70f5951881 +(I) [15:06:39.012] [000022800]: Local user framerate is [64.461319] +(I) [15:06:39.012] [000022800]: Local user MinDelay=[53ms], MaxDelay=[112ms], AvgDelay=[80ms], minRTT[120ms], maxRTT[247ms], avgRTT[151ms] +(I) [15:06:39.383] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=efb96865618edc60718b87ad95fd7c46829dfed8e7bad06b2a0ec7534f3aa1b4 +(I) [15:06:43.302] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=056312a3ccaeb88735ad20a0af32a50ffefb285f56e7797cc2d2f951019fc671 +(I) [15:06:53.004] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=156/0, mdat=344/688, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=22/6, lb_c=0/0, cast=0/0, cdat=147/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:06:53.341] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d3eab71967552324e3978069c142766cdd5fb8353b4b2a8b3470f9a00dfa059c +(I) [15:06:56.068] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=302aece9bc883d51794001bf5cce1041cf75e0e2d468cfb4f17457e0b232861e +(I) [15:07:00.033] [000022800]: Local user framerate is [62.799999] +(I) [15:07:00.033] [000022800]: Local user MinDelay=[50ms], MaxDelay=[112ms], AvgDelay=[78ms], minRTT[120ms], maxRTT[258ms], avgRTT[162ms] +(I) [15:07:01.061] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ef1665ad0e2da9ae027bbc9274710a5ed849ff14345b9182016cf913239f340f +(I) [15:07:04.318] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2855ecb26946d91ed705206d9af8dd09652b2f15c3d5e261f7820bb100b914ea +(I) [15:07:07.689] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=167bf8653e8dad9c4b2eae5952517cbcb31c691eb6c38f4de561e613899c0825 +(I) [15:07:11.001] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=67/0, mdat=143/286, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=9/2, lb_c=0/0, cast=0/0, cdat=62/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:07:12.714] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c68a2d184dcbdf3691daf62c6d7aede1335afb06994ad31a0022da1dd7a3a480 +(I) [15:07:14.200] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c4965debf2e0884d3f19bc12ec3c73dc1e7a972c19c46b39d184abd43b7a5991 +(I) [15:07:21.042] [000022800]: Local user framerate is [56.568882] +(I) [15:07:21.042] [000022800]: Local user MinDelay=[50ms], MaxDelay=[126ms], AvgDelay=[78ms], minRTT[116ms], maxRTT[258ms], avgRTT[161ms] +(I) [15:07:28.074] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b72b7fd9f2c5db0228a54798b4eaf50a97d2f1cf7d7606d78a9c0e884813a21f +(I) [15:07:42.033] [000022800]: Local user framerate is [59.211510] +(I) [15:07:42.033] [000022800]: Local user MinDelay=[18ms], MaxDelay=[97ms], AvgDelay=[78ms], minRTT[127ms], maxRTT[230ms], avgRTT[147ms] +(I) [15:07:45.973] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b5b3ec9124d0c8b4606db7b9d99ff0538455d459ed800320fef405d17c1c8c93 +(I) [15:07:51.341] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4193793a3a64d1803c5ece4d6a2bc3c0c0ad27888e1d05f2d0abbd57eaa9d734 +(I) [15:07:54.004] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=127/0, mdat=344/688, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=21/6, lb_c=0/0, cast=0/0, cdat=119/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:07:56.342] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6e4e526971bf04eb75292b0765a69112b55cf6f947d8a0d52cd3d03fb01c319c +(I) [15:07:59.212] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a955de228a00dfe66ad0abeafd212606ab7d9e1576374dcad46d1cdb7d71828a +(I) [15:08:01.089] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c2aab6c89122ac3c3070103be0a333fb2dcb8f00c491c95cff09a55726ccaafe +(I) [15:08:03.053] [000022800]: Local user framerate is [62.334412] +(I) [15:08:03.053] [000022800]: Local user MinDelay=[18ms], MaxDelay=[103ms], AvgDelay=[78ms], minRTT[116ms], maxRTT[240ms], avgRTT[159ms] +(I) [15:08:03.716] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1cf21192dc08e25a0da223a8950b94f9d87a9489e0c6f8841687bdf122c916d6 +(I) [15:08:12.002] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=56/0, mdat=144/288, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=9/2, lb_c=0/0, cast=0/0, cdat=51/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:08:13.467] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0bea5d3afca06f4695f36e01a44973911aed259aca1b356a4fcffb063a5ae765 +(I) [15:08:24.009] [000022800]: Local user framerate is [59.311447] +(I) [15:08:24.009] [000022800]: Local user MinDelay=[18ms], MaxDelay=[106ms], AvgDelay=[79ms], minRTT[115ms], maxRTT[244ms], avgRTT[152ms] +(I) [15:08:27.429] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b1529cd524059c59190447476460300b76c81815ccde8cf2baecc538a929c4a3 +(I) [15:08:28.492] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=49c4cc7b25f3a07034366454809059047b8136bebaf04ea16cf85c48b7a8c560 +(I) [15:08:32.868] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=97441539703f9b2d3f59807cadf5088948e7d29b4ef18da5609b73630c2a6a09 +(I) [15:08:34.460] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0ab4e135f0c6134a5f5311e761b90b9b5f7ab0c84cb0ed3bb6f8bb05619b1258 +(I) [15:08:36.955] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0162c913dfbd1417e6440d9ab0e0e7c2793084f8e853795b8c853ccbdf91b7db +(I) [15:08:43.483] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=486df8a71e63da6cc8e948e444488fd060373f73ce0a12b21f458daaa4c12a62 +(I) [15:08:45.001] [000022800]: Local user framerate is [56.824429] +(I) [15:08:45.001] [000022800]: Local user MinDelay=[58ms], MaxDelay=[101ms], AvgDelay=[79ms], minRTT[116ms], maxRTT[239ms], avgRTT[151ms] +(I) [15:08:55.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=187/2, mdat=344/688, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/2, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/1, lb_p=21/6, lb_c=0/0, cast=0/0, cdat=174/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:09:01.587] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7d4a58bd1b63b85d6d5a0ecf62794a8c15ff9de2cf9caa57a5fb33d1e1ee61b2 +(I) [15:09:06.002] [000022800]: Local user framerate is [64.280716] +(I) [15:09:06.002] [000022800]: Local user MinDelay=[58ms], MaxDelay=[101ms], AvgDelay=[79ms], minRTT[116ms], maxRTT[242ms], avgRTT[149ms] +(I) [15:09:13.006] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=76/0, mdat=144/288, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=9/2, lb_c=0/0, cast=0/0, cdat=72/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:09:14.719] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=62ee9bf6ec8589f39ff41c460ee44f94ef659452c3f243bdb30260f0a8e4dfc6 +(I) [15:09:18.837] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1f7642a9f2288809cbdc716cf21b2c3c6825186abc11291a6ff18b3a143f73c8 +(I) [15:09:27.000] [000022800]: Local user framerate is [67.166412] +(I) [15:09:27.000] [000022800]: Local user MinDelay=[54ms], MaxDelay=[101ms], AvgDelay=[80ms], minRTT[116ms], maxRTT[242ms], avgRTT[147ms] +(I) [15:09:27.639] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9a100cbcba52f2513271702fbce2f812018d381a7874e7dd9255bdec5f96904a +(I) [15:09:28.496] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c4622ff9e250f081f652014df7e657d0ca0ee0da3bb99654ea5ce07e605e5cf4 +(I) [15:09:33.987] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=dd891294fef9cf39d2336fba5e3bb22f4bba618e8738847be6aeab3f7de839b9 +(I) [15:09:41.392] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2b8447dcbb172922bee81f6fe87af74be905b6d89964f575c2f061537d1692fc +(I) [15:09:48.007] [000022800]: Local user framerate is [64.964264] +(I) [15:09:48.007] [000022800]: Local user MinDelay=[59ms], MaxDelay=[96ms], AvgDelay=[77ms], minRTT[116ms], maxRTT[271ms], avgRTT[156ms] +(I) [15:09:50.675] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=87a950c4ac56fedb35a62c424bf34c261a53eacdc93264373f59fe7117ac8b4f +(I) [15:09:53.429] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3766a62c5d6d5ef338f8dc0f20af27b81566e325cbb1a97783c033cb60592ca9 +(I) [15:09:55.789] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5d5a694f63c580379c69143fa2fca16ef55852381855262f5a6acb6e926cda49 +(I) [15:09:56.004] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=198/0, mdat=344/688, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=22/6, lb_c=0/0, cast=0/0, cdat=186/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:10:01.264] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=935307aabb9646849367556039ce1c1fb5fb445ee7d36054fe238843c345c739 +(I) [15:10:03.873] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=38904a751b6b55d93083b17579c0d39a057250866637233d90a8db3735d92fb6 +(I) [15:10:07.144] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5c388d74aec0c11d7107f831fc289756274e0202ba7afd78da381548432afb24 +(I) [15:10:09.002] [000022800]: Local user framerate is [59.491077] +(I) [15:10:09.002] [000022800]: Local user MinDelay=[57ms], MaxDelay=[96ms], AvgDelay=[76ms], minRTT[116ms], maxRTT[271ms], avgRTT[160ms] +(I) [15:10:10.132] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c57e299f4c59385b08c9ba04fd0c0afaf47667bc6efa7256631ce01489e5d7e6 +(I) [15:10:14.009] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=77/0, mdat=144/288, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=9/2, lb_c=0/0, cast=0/0, cdat=71/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:10:17.005] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e31367a58a29489dc30aed93f00aca982d6a665f210e04e51a4e2fccde9bdc90 +(I) [15:10:23.794] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=59456f662f3ee4266d13a55cc403571d063a314063d7e847e8d47a849ca37702 +(I) [15:10:27.901] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f72235953dab8bc923806d21f33c921a0d3c60406796ec43d65f8559e2890c4d +(I) [15:10:30.013] [000022800]: Local user framerate is [55.350182] +(I) [15:10:30.013] [000022800]: Local user MinDelay=[61ms], MaxDelay=[94ms], AvgDelay=[77ms], minRTT[136ms], maxRTT[260ms], avgRTT[173ms] +(I) [15:10:32.029] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=201e69d89a20025b0330b6c511ee1aac1ebf521fec894848559540fa9e7d266a +(I) [15:10:36.609] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6b6fa9c9ad3e150c0c580831e158602d0bb6005250f7c70f93e2f82e6bb510be +(I) [15:10:40.060] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=32e0e6f777a5d5f30e1c0874c7fd40406bc67307a605585d4b9de71d325fafa6 +(I) [15:10:46.412] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=74cb5696336f9566179904f5a5a86ede743a0a6724bcff0c0982d9f25b4f5c20 +(I) [15:10:48.527] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=01890d091b183707c464f41f87b931c9a46ad48b8705312649bad41fcf6efe3e +(I) [15:10:51.002] [000022800]: Local user framerate is [57.241413] +(I) [15:10:51.002] [000022800]: Local user MinDelay=[47ms], MaxDelay=[101ms], AvgDelay=[76ms], minRTT[116ms], maxRTT[269ms], avgRTT[166ms] +(I) [15:10:57.002] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=198/0, mdat=344/688, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=21/6, lb_c=0/0, cast=0/0, cdat=176/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:11:01.042] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a00f01e8ccebfbf58c7785b94d90b6399fb64f1a4fb7beca36bc01b82c89f3af +(I) [15:11:01.905] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fa7e9ce74d867d5a7b099abf240096fe88fff4c69d72e554d16e298f5df8c09f +(I) [15:11:09.731] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=213f2f3248e1fa7713f3f54decf5a97a43c315ae4e86bb426c9e13ee4d790681 +(I) [15:11:12.009] [000022800]: Local user framerate is [55.822090] +(I) [15:11:12.009] [000022800]: Local user MinDelay=[37ms], MaxDelay=[128ms], AvgDelay=[75ms], minRTT[116ms], maxRTT[269ms], avgRTT[159ms] +(I) [15:11:13.558] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fee759282d2fc5d777b119fc56a10a61cb6ae2b9aac91914416e531a3b453575 +(I) [15:11:15.003] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=99/0, mdat=144/288, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=9/2, lb_c=0/0, cast=0/0, cdat=90/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:11:20.872] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a368c96482c9aa047285f8edbc031b9f893a8741cc275e9ab33fe977a045dbbb +(I) [15:11:29.679] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0a2074b9f37f650545fc5cd082b381194e714eefdce2ca976904f2267464fb43 +(I) [15:11:30.523] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=91078c64a404c47a2a4497e72f3d17a86a36bc626cd2495dfa454bc972b24ba7 +(I) [15:11:33.011] [000022800]: Local user framerate is [57.912357] +(I) [15:11:33.011] [000022800]: Local user MinDelay=[39ms], MaxDelay=[109ms], AvgDelay=[76ms], minRTT[127ms], maxRTT[237ms], avgRTT[151ms] +(I) [15:11:36.793] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f426c4624401c427d17a0515bcfd74d1d178480cfac8f9aa708063e4cb4566c5 +(I) [15:11:42.550] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a58a407f4995870eb6d60a577fac792aa469250db65250485a9e2fcd0d3bfcf7 +(I) [15:11:43.795] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=94877f7a74d704a0c7bb6fb1c7c2d6006b0a717744f9a0f02441683990e73204 +(I) [15:11:46.588] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=659af732cff2c76724760cd1e0552e1b01b883001aeb141da1706e36227525ce +(I) [15:11:48.171] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=11cba86851aa02fd9cf20764f3c1fd5228dbacd1580f4e6075b1f335d4540e5b +(I) [15:11:50.131] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e7bdc5bb9e53ff71a379c8cbcd6f05d8965ebd19943b4b2e18dfad4374c4226e +(I) [15:11:51.092] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=29eaac50db77d320b4b3fcab92b3ea8efe5e2b351e71636dc5b5c329d7e6532d +(I) [15:11:54.033] [000022800]: Local user framerate is [62.293930] +(I) [15:11:54.033] [000022800]: Local user MinDelay=[39ms], MaxDelay=[109ms], AvgDelay=[77ms], minRTT[117ms], maxRTT[239ms], avgRTT[154ms] +(I) [15:11:54.387] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a5b7f2772e84d013e97187486467cd1d7534a14a2dbce0aa2b41fb2ee69c351c +(I) [15:11:57.798] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8044d27a3b687e3fc52027d38ae8a236ec008b0d1278f6c3c60ecfbe50c2a654 +(I) [15:11:58.005] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=228/4, mdat=344/688, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/4, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/2, lb_p=21/6, lb_c=0/0, cast=0/0, cdat=208/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:12:01.071] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c05cda5e3f9729281536f9c7fdb33e34ce80314f48ff583ad4ffc318b4e6e4d4 +(I) [15:12:06.336] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a9a72da5457a5f21b62748a68fd44a027b90d6fda51b7bcdd95929595acd1b2b +(I) [15:12:07.391] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8be81810b849bdaa11822706ce45da64498f3a1a624b3cb40ceed983484bf9c3 +(I) [15:12:10.564] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b3caac70be7e580622fc681b06335df60cb26ec0494158dd89d133ee09d6e672 +(I) [15:12:15.029] [000022800]: Local user framerate is [60.419788] +(I) [15:12:15.029] [000022800]: Local user MinDelay=[39ms], MaxDelay=[134ms], AvgDelay=[77ms], minRTT[115ms], maxRTT[258ms], avgRTT[157ms] +(I) [15:12:16.008] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=96/0, mdat=143/286, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=9/2, lb_c=0/0, cast=0/0, cdat=82/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:12:16.118] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7264d168ce362d5936ea556543e9457f2727768f8c0174238af4c8615d655bb3 +(I) [15:12:17.224] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9ed06301efd5d83444cf859a0a6997bb0647a317599d9211cf0f9004f739712f +(I) [15:12:18.682] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b61a4696ad5b83d28fffda1f115bb1dbc206563b6f9cc20da43668e9696eba97 +(I) [15:12:23.800] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fb9a1f325cec1f41f0395d29704fe36c10da115a9db1e9a1ecbbf785d7b909ca +(I) [15:12:26.174] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=25a0bda18adc9241d45fc8f6fc279f6eefbbf5f2167a30f485715562682f95fa +(I) [15:12:28.148] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=58550670403a9255f25dfa5e4e571b8995df732eed4a47d58b9dcbf233aa84b9 +(I) [15:12:36.046] [000022800]: Local user framerate is [60.978653] +(I) [15:12:36.046] [000022800]: Local user MinDelay=[55ms], MaxDelay=[89ms], AvgDelay=[75ms], minRTT[124ms], maxRTT[191ms], avgRTT[146ms] +(I) [15:12:42.932] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=24556cca91fe2a5075cbc058bc47e9907644ec289716e390cb9b9b67c7f0caec +(I) [15:12:57.053] [000022800]: Local user framerate is [67.679695] +(I) [15:12:57.053] [000022800]: Local user MinDelay=[55ms], MaxDelay=[95ms], AvgDelay=[76ms], minRTT[116ms], maxRTT[241ms], avgRTT[149ms] +(I) [15:12:59.008] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=202/0, mdat=344/688, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=22/6, lb_c=0/0, cast=0/0, cdat=187/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:13:02.035] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4445c37164de5fd08f7c614cd565d2f5cf0b02fbe14d8df580210f65332113f1 +(I) [15:13:15.606] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=564c1e31aed053de6714eff3d58a58be9d386f46838ecc436730f325506d0ebe +(I) [15:13:17.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=97/0, mdat=144/288, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=28/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=28/0, lb_p=9/2, lb_c=0/0, cast=0/0, cdat=63/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:13:17.225] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8fa5af6abcb64284d759836bfe3ffc0f827d2162fa0906b3bd33d61c0614fbff +(I) [15:13:17.827] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4d590288a7891184eb089d1d16979445c0a426798af716b612418c15c1fefabb +(I) [15:13:18.000] [000022800]: Local user framerate is [64.587074] +(I) [15:13:18.000] [000022800]: Local user MinDelay=[42ms], MaxDelay=[97ms], AvgDelay=[75ms], minRTT[116ms], maxRTT[241ms], avgRTT[151ms] +(I) [15:13:31.093] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8f7c6a976f331871602df3d9cbe04726c7a13939e98de5983a19e01de60b13db +(I) [15:13:39.002] [000022800]: Local user framerate is [65.580322] +(I) [15:13:39.002] [000022800]: Local user MinDelay=[54ms], MaxDelay=[86ms], AvgDelay=[70ms], minRTT[123ms], maxRTT[252ms], avgRTT[155ms] +(I) [15:13:42.221] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ef7dd95d0dc915a6fd5bd19c228a6bd7bf55675f6f86debfa7afdb02bbc34fab +(I) [15:13:45.497] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=94eaa47f3c5451544db914934c36fb32fcf029e32f2b7262963a3fe8cf4fd7c9 +(I) [15:13:58.178] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7dff5d8c8ed4a65e92949b5a37d8b3141c20151446d77c106c54e61255cf9169 +(I) [15:14:00.010] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=206/0, mdat=344/688, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=21/6, lb_c=0/0, cast=0/0, cdat=200/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:14:00.014] [000022800]: Local user framerate is [62.887417] +(I) [15:14:00.014] [000022800]: Local user MinDelay=[42ms], MaxDelay=[113ms], AvgDelay=[71ms], minRTT[117ms], maxRTT[270ms], avgRTT[154ms] +(I) [15:14:10.858] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=138bfc9890aa5251fca376261e3c67f16cad15681856ca6ae4cf619389ca3198 +(I) [15:14:12.523] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7a1231c693a9a048a291024eaf2b7125704df8c1e16f53eda4a5e5ad011aa040 +(I) [15:14:13.031] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9dc1af67affa097afae3108004f2692670eea471d3f3226dfbd2405136ba750c +(I) [15:14:15.235] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3bc152a2334ee8150d25ed3ecf73dcfc8b91fd6c57632e798326ca77b4645537 +(I) [15:14:16.276] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2e42b077d81732e22092d3d7425be404572c82edf8bb845738cca413cb306a37 +(I) [15:14:18.009] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=73/0, mdat=144/288, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=9/2, lb_c=0/0, cast=0/0, cdat=65/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:14:20.508] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=33ec05210640c44b9011683b3b5cbb1e90b03c5c471818fc291469bf937787a9 +(I) [15:14:21.015] [000022800]: Local user framerate is [60.616657] +(I) [15:14:21.015] [000022800]: Local user MinDelay=[35ms], MaxDelay=[113ms], AvgDelay=[72ms], minRTT[109ms], maxRTT[270ms], avgRTT[157ms] +(I) [15:14:30.931] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=db21de10efef30afd3fc9ed5ba586f1ed864749bbc1f5a6532906d216f1f32f4 +(I) [15:14:34.078] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=026faadfe2cb3c41a4ba53ec77d406d72366ba97a6568d27572d1fd61d1f6a43 +(I) [15:14:36.665] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ba2a9a2edb12b786a05d2dc86a32826af018e56df3a27bb98c9da6acd657403f +(I) [15:14:42.006] [000022800]: Local user framerate is [51.073387] +(I) [15:14:42.006] [000022800]: Local user MinDelay=[57ms], MaxDelay=[101ms], AvgDelay=[76ms], minRTT[116ms], maxRTT[266ms], avgRTT[162ms] +(I) [15:14:42.539] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=65178d8614ba0e1188f3227ef22a64e5e1a9d986d71bd76efd8eb8643c63e02c +(I) [15:14:49.524] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2935cf2b6dfb18629c1b1ec253770fd72a925dda1be9fdd81508cdabfd2308fe +(I) [15:14:56.921] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5469ab5520c0130a18669ba8e8a3bc30dcfef0a7b03c0036e0f6efad8f4d2a73 +(I) [15:15:01.008] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=183/0, mdat=344/688, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=21/6, lb_c=0/0, cast=0/0, cdat=167/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:15:02.532] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=794c3bf6e257cca6ce969631da0489b94835ec5543b295855c9d007350f98a3e +(I) [15:15:03.005] [000022800]: Local user framerate is [50.359711] +(I) [15:15:03.005] [000022800]: Local user MinDelay=[52ms], MaxDelay=[104ms], AvgDelay=[77ms], minRTT[116ms], maxRTT[266ms], avgRTT[158ms] +(I) [15:15:06.217] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=58578b6c61367f4a8692c49691a7a8493d9725ac1f5ff0b96d8c2e7a9dd89e42 +(I) [15:15:11.540] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d999d3e56502ce9e24ea845485a8161ef675f06d4e13b4c9298e1ca6d11fc58f +(I) [15:15:19.004] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=70/0, mdat=144/288, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=10/2, lb_c=0/0, cast=0/0, cdat=64/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:15:20.302] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=bc82367a0f5b4da7b3ac7f47dc726e893b558f26e2b2137deb8fb91445c16046 +(I) [15:15:23.185] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1e15d2fe521e3bcb9b96c1ed1b28e3f899172d2c54046ab154d8c84c3fc87a3e +(I) [15:15:24.008] [000022800]: Local user framerate is [52.668396] +(I) [15:15:24.008] [000022800]: Local user MinDelay=[52ms], MaxDelay=[110ms], AvgDelay=[78ms], minRTT[116ms], maxRTT[266ms], avgRTT[162ms] +(I) [15:15:26.388] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7976c5a188b3b3db5f0a5b8500b25efdc076c5f1103ad4fe176797b067e657fd +(I) [15:15:33.619] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=075e2c9d9c43b42929709e53c2a0602470cfa27a442b6b6d2678f383ab41b1cf +(I) [15:15:45.000] [000022800]: Local user framerate is [55.299999] +(I) [15:15:45.000] [000022800]: Local user MinDelay=[47ms], MaxDelay=[113ms], AvgDelay=[86ms], minRTT[119ms], maxRTT[264ms], avgRTT[151ms] +(I) [15:15:45.086] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0b5f6d021a1aaac839beecb5e8829492b1abcb216ec3a5cf3bc3be4bea663ac3 +(I) [15:15:50.490] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d0c35646eeb79cfe40c1bcffa5459a3f904b1bcc151dae7e419e41b3ffb038aa +(I) [15:15:54.418] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f209784e984e46b97a630b7d0ccfa72dc658ed9cd7630cd9b0df01f21b126c8f +(I) [15:15:57.194] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=eb0f1c9f421827caf001a25fbb90109401f169c5d7f532994582a23f01657452 +(I) [15:16:02.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=197/0, mdat=344/688, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=21/6, lb_c=0/0, cast=0/0, cdat=183/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:16:03.273] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1db1b34d335a691e4d3357d88126ace4848e1ded092ed2d8e17050aece1b6a75 +(I) [15:16:06.009] [000022800]: Local user framerate is [58.944103] +(I) [15:16:06.009] [000022800]: Local user MinDelay=[47ms], MaxDelay=[113ms], AvgDelay=[84ms], minRTT[115ms], maxRTT[270ms], avgRTT[158ms] +(I) [15:16:10.288] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7698e02b2b3d7e00cac3bb4b38072c530882be85d8f24063d34f45924d1dce9f +(I) [15:16:15.791] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=99ed4908c9c2fdc21a5ea5b9bb334735bfd837bb368d640846301abd2df8e6be +(I) [15:16:20.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=61/0, mdat=144/288, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=11/4, lb_c=0/0, cast=0/0, cdat=58/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:16:24.049] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=58c333623ecdb3509569551969e638fd7526ef9a54fefaa80d2f4dd618b37570 +(I) [15:16:27.011] [000022800]: Local user framerate is [64.427444] +(I) [15:16:27.011] [000022800]: Local user MinDelay=[47ms], MaxDelay=[113ms], AvgDelay=[82ms], minRTT[108ms], maxRTT[270ms], avgRTT[158ms] +(I) [15:16:33.310] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9e7f808c1b041d4a27d306060d0b98b35f474729fda4b71bd39894e8385cebe0 +(I) [15:16:38.810] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=bebdb62741b3fb4ee3812b28134c1e327be5641a1f630264542fe1a0240f8961 +(I) [15:16:41.546] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f8c621fb32112906d9da81554f00e6e0d2c2022668e5a2ff47badc9ef086de44 +(I) [15:16:46.591] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=90cc2b45175e2662e3f128114580339050c55ab5cd5671546d3a1cad33c07f00 +(I) [15:16:48.025] [000022800]: Local user framerate is [61.466190] +(I) [15:16:48.025] [000022800]: Local user MinDelay=[57ms], MaxDelay=[98ms], AvgDelay=[76ms], minRTT[120ms], maxRTT[273ms], avgRTT[169ms] +(I) [15:16:58.297] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=70144e6624d2946ad189b582a822de58b7cf2e4fc980389f7316d176a348d1cd +(I) [15:17:02.350] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=053d2d1eb3374c28349d5712a4adaea0875da7bf616173874ebcbe27846480bb +(I) [15:17:03.001] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=118/0, mdat=343/686, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=19/4, lb_c=0/0, cast=0/0, cdat=114/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:17:09.031] [000022800]: Local user framerate is [62.818588] +(I) [15:17:09.031] [000022800]: Local user MinDelay=[57ms], MaxDelay=[103ms], AvgDelay=[76ms], minRTT[120ms], maxRTT[273ms], avgRTT[160ms] +(I) [15:17:21.004] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=48/0, mdat=144/288, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=11/4, lb_c=0/0, cast=0/0, cdat=47/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:17:22.024] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=28085f80a9f21ee6e0d8c21f8af3dce4611afc560b6cf9f4dddb8dbedd8ab727 +(I) [15:17:30.032] [000022800]: Local user framerate is [58.441559] +(I) [15:17:30.032] [000022800]: Local user MinDelay=[54ms], MaxDelay=[87ms], AvgDelay=[74ms], minRTT[128ms], maxRTT[220ms], avgRTT[155ms] +(I) [15:17:31.036] [000023200]: Read bytes [0,"MatchReceivedChatMessage",3264,[72076,"stay","stay",3,5872898]] +(I) [15:17:31.039] [000022800]: Received chat message { stay } +(I) [15:17:31.039] [000022800]: Starting FilterChatJob for message { stay } +(I) [15:17:31.095] [000022800]: Posting chat event from FilterChatJob for message { stay } +(I) [15:17:31.451] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cdee47b3d4b8e0ebfb26fee93ccd7fa37040896c4db1eeafc6afbcb942d6cfc0 +(I) [15:17:31.630] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:17:31.630] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:17:31.630] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:17:31.630] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:17:31.630] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:17:31.631] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:17:31.631] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:17:31.631] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:17:31.631] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:17:31.631] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:17:31.631] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:17:31.631] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:17:31.631] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:17:31.631] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:17:31.631] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:17:31.631] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:17:31.631] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:17:31.631] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:17:31.631] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:17:31.631] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:17:31.631] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:17:31.631] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:17:31.631] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:17:31.631] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:17:31.631] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:17:31.631] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:17:31.631] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:17:31.976] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:17:31.976] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:17:31.976] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:17:31.976] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:17:31.976] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:17:31.976] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:17:31.976] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:17:39.449] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7bb55a03052a9bd29a88cf35879c3da7f305915d9919df7b079ca19a248f669e +(I) [15:17:42.822] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a6fa001897cec8b4e09a64c96f135128166143f16c7c98cb73c2bffac1ee9a48 +(I) [15:17:51.055] [000022800]: Local user framerate is [61.234688] +(I) [15:17:51.055] [000022800]: Local user MinDelay=[51ms], MaxDelay=[107ms], AvgDelay=[74ms], minRTT[117ms], maxRTT[248ms], avgRTT[155ms] +(I) [15:17:53.722] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=95c3ead8f0b4f9ee1ebe477c4e49b5bf8111fbcd31706babff2d32f0547a715f +(I) [15:17:57.549] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f18df819412f47b43fa37a13fbb9b3420096558d83076557dd9b036af996c187 +(I) [15:18:04.001] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=166/4, mdat=344/688, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/4, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/2, lb_p=20/4, lb_c=0/0, cast=0/0, cdat=159/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:18:04.356] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a2b76c7ca0446259270c010a6330e5940f8ca261141878dfde33d580674071c3 +(I) [15:18:11.781] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=44ee80dfd64872c578716af7155de7afa3caff0330b7c173df76c69378c4c928 +(I) [15:18:12.008] [000022800]: Local user framerate is [63.677708] +(I) [15:18:12.008] [000022800]: Local user MinDelay=[51ms], MaxDelay=[107ms], AvgDelay=[75ms], minRTT[118ms], maxRTT[268ms], avgRTT[160ms] +(I) [15:18:18.162] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=706bce4d5482704bc9218e078f89657a56e0f8dec6a02fe10cc3015876dc9744 +(I) [15:18:22.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=80/0, mdat=144/288, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=11/4, lb_c=0/0, cast=0/0, cdat=71/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:18:24.124] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6afea3b2af5a8b6e89c035a3e8fb0e8c275fb39f5296076f3727766208d651cd +(I) [15:18:24.863] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=963916066cf022fd4618c2db1c47d73ead0addfe041337fbc0d25f5af41c2df5 +(I) [15:18:30.868] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=401a27ae94cb3ffa355eeca7b84cfb6777989ee5f93702e1da29609beea12fad +(I) [15:18:32.813] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=52972b5a3d5140fa3a8d5fa6529cfcaad1cc5c640fe22b5f4f0fef51a51393ba +(I) [15:18:33.001] [000022800]: Local user framerate is [59.814110] +(I) [15:18:33.001] [000022800]: Local user MinDelay=[63ms], MaxDelay=[89ms], AvgDelay=[75ms], minRTT[126ms], maxRTT[250ms], avgRTT[173ms] +(I) [15:18:39.340] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ee707642d11253e692a1d568cd4def2253b536b132bc1250be5a26640c5fe3eb +(I) [15:18:43.857] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6600f2d9c60435e6770d9a08a38bef8e96c7a794b90849cfb0614c36613cf98f +(I) [15:18:45.102] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1b2c4fd05d36edf806f0f8323a5f24e2470ccb2044889ce59097aa348ebdbd6e +(I) [15:18:47.268] [000022800]: GameObj::SchedulePeerForDestruction - info, frame [14548], peer for station [8] scheduled for destruction on frame 14549. +(I) [15:18:47.268] [000022800]: GameObj::SchedulePeerForDestruction - handling UI call to inform user of drop. +(I) [15:18:47.268] [000022800]: GAME -- Frame 14548 - SchedulePeerForDestruction - peer 1007 scheduledfor destruction +(I) [15:18:47.313] [000022800]: Picked to migrate AI to network station id: 7 +(I) [15:18:47.314] [000022800]: GameObj - AI Simulation for player [1007] migrated to remote station [7]. +(I) [15:18:47.314] [000022800]: GameObj::KillAllDropped - Processing disconnected player [1007], set to migrate to station [7]. +(I) [15:18:47.900] [000022800]: MOD -- Player joker95174 set to AI Type: Remote Human Takeover (frame 14553) (CmdAI) +(I) [15:18:52.949] [000022800]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [15:18:52.949] [000022800]: WorldwidePartyService::PeerRemove, Removing peer ID: 8 +(I) [15:18:53.087] [000022800]: Accepted matchInfo updated 52 from host +(I) [15:18:53.088] [000022800]: ServerSynchronization::OnDestroyedPeerEvent - info, drop event received for remote station [8]. +(I) [15:18:53.088] [000022800]: GameObjController - OnMatchEvent: event type 1 +(I) [15:18:53.088] [000022800]: GameObjController - OnMatchEvent: event type 6 +(I) [15:18:54.008] [000022800]: Local user framerate is [57.641354] +(I) [15:18:54.008] [000022800]: Local user MinDelay=[58ms], MaxDelay=[94ms], AvgDelay=[75ms], minRTT[120ms], maxRTT[273ms], avgRTT[162ms] +(I) [15:18:58.799] [000023200]: Read bytes [0,"MatchReceivedChatMessage",3264,[72076,"Negativ","Negativ",3,5872898]] +(I) [15:18:58.799] [000022800]: Received chat message { Negativ } +(I) [15:18:58.799] [000022800]: Starting FilterChatJob for message { Negativ } +(I) [15:18:58.857] [000022800]: Posting chat event from FilterChatJob for message { Negativ } +(I) [15:18:59.215] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:18:59.215] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:18:59.215] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:18:59.215] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:18:59.215] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:18:59.215] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:18:59.215] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:18:59.215] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:18:59.215] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:18:59.215] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:18:59.215] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:18:59.215] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:18:59.215] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:18:59.215] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:18:59.215] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:18:59.215] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:18:59.215] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:18:59.215] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:18:59.215] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:18:59.215] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:18:59.215] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:18:59.215] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:18:59.215] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:18:59.215] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:18:59.215] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:18:59.215] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:18:59.215] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:19:05.008] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/2, drop=0/2, data=131/2, mdat=344/688, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=1/6, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=1/3, lb_p=22/6, lb_c=0/0, cast=0/0, cdat=120/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:19:05.025] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0707365b25588718a1a2a0d667d7311f2d878f100c824f4b30d5c866eab2bbdf +(I) [15:19:07.367] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=812731247cf701f8015d41062c234be8f5bd0d4c8365f18aa2909559d18eb4df +(I) [15:19:11.195] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2c584e90313ac38d1bb2478729adcf45ac1ed6f219b042e6806b5e5e3eb18f9d +(I) [15:19:15.014] [000022800]: Local user framerate is [58.891167] +(I) [15:19:15.014] [000022800]: Local user MinDelay=[51ms], MaxDelay=[94ms], AvgDelay=[75ms], minRTT[120ms], maxRTT[273ms], avgRTT[161ms] +(I) [15:19:17.382] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8a8dd62f8ca10bb59ab15fb36cfc9d1f8b099005a1d83d7f84b210725b7a10a6 +(I) [15:19:19.402] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=134183dc59f4a50071b555fdfd28e73ddc3f4acf3203c06ca902d727ed4fd3e9 +(I) [15:19:19.911] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d729f88326e3dec6cbbd7778be63182a1adf352b2889e1596cc72de19645c63f +(I) [15:19:21.032] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fb23e04d9597ceb37bdb594ecd4bcdb83cd2d4c68d28c5ab1bee25363125afde +(I) [15:19:23.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=75/0, mdat=144/288, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=8/2, lb_c=0/0, cast=0/0, cdat=71/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:19:23.827] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f71a2f62914bf674a69a141e0ef2141acb9960da468440f4e2350f39b343f87f +(I) [15:19:30.395] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a4a10be11b779737fe5a07bb1bb2bc26eee78d1ec81c7a1505589a80fd6c7399 +(I) [15:19:32.721] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=42d55cae262dbb60da3555899f479212aeea94703125fb637369309e4917e34d +(I) [15:19:36.001] [000022800]: Local user framerate is [55.005993] +(I) [15:19:36.001] [000022800]: Local user MinDelay=[55ms], MaxDelay=[107ms], AvgDelay=[79ms], minRTT[125ms], maxRTT[239ms], avgRTT[152ms] +(I) [15:19:47.781] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=47a1cd5884ec78ba4f3c8b63a6605432bed819594d88b3b1a48d74c06d56bb1d +(I) [15:19:56.082] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1fcf0a18cae427d1fbabdb8ed625aaff5aeb3dd08509682965e26702c2a9d788 +(I) [15:19:57.008] [000022800]: Local user framerate is [55.427826] +(I) [15:19:57.008] [000022800]: Local user MinDelay=[48ms], MaxDelay=[107ms], AvgDelay=[78ms], minRTT[115ms], maxRTT[269ms], avgRTT[154ms] +(I) [15:20:03.288] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c7ae65e927f941fe454a89034ea5d01de5ec2c56dd4649003205c6cccd53fd1e +(I) [15:20:06.000] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=158/0, mdat=344/688, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=22/6, lb_c=0/0, cast=0/0, cdat=148/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:20:06.172] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e1889d17fa9beb2fcd26445bc32542e80b22c98ac8afed6a55f1f12c519a6986 +(I) [15:20:13.500] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c6f916a2b53ab920e8f4348430badafe37310f0712f1d453d624a430d99823ff +(I) [15:20:18.009] [000022800]: Local user framerate is [57.045803] +(I) [15:20:18.009] [000022800]: Local user MinDelay=[48ms], MaxDelay=[107ms], AvgDelay=[78ms], minRTT[115ms], maxRTT[277ms], avgRTT[152ms] +(I) [15:20:20.902] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=951ca7b357b6059a2e13e6892e385dbcca302d76822b7af806c6fae09bd92bba +(I) [15:20:24.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=81/0, mdat=144/288, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=8/2, lb_c=0/0, cast=0/0, cdat=77/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:20:26.039] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ca33579da1681e76da4016673612899a4fe6eb40ebfe7a0f1b15668dbd69dbe5 +(I) [15:20:35.416] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fcaa3616d7afa68f3b60f218ce024f2bfe78f2af55c558d243643409cd4dae4c +(I) [15:20:39.008] [000022800]: Local user framerate is [57.488499] +(I) [15:20:39.008] [000022800]: Local user MinDelay=[59ms], MaxDelay=[93ms], AvgDelay=[75ms], minRTT[122ms], maxRTT[262ms], avgRTT[157ms] +(I) [15:20:39.106] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7592d941e14ff86e47bb854edc48f222f66c1b973a0ede60407574bb2dd55d02 +(I) [15:20:43.571] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2f6361fb0639aa3fd498c5a4bd2de3f9de46d21ff322c5699f4eedc99663ff75 +(I) [15:20:46.302] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f5cd5813393cd7e222c8eb3f0c23ef483a42c2844470b91bb3dc5d8b077dd661 +(I) [15:20:54.382] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ae48124d43db7eb88c0b8f50abc3ce4703edf0482e2352f70b86888c6bd60d31 +(I) [15:21:00.041] [000022800]: Local user framerate is [55.150002] +(I) [15:21:00.041] [000022800]: Local user MinDelay=[47ms], MaxDelay=[99ms], AvgDelay=[75ms], minRTT[116ms], maxRTT[262ms], avgRTT[157ms] +(I) [15:21:06.337] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b660972c082c3ebb3e89a89b146510a71aec1a30467cbe1201a50f7659ef8e2f +(I) [15:21:07.009] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=191/0, mdat=344/688, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=22/6, lb_c=0/0, cast=0/0, cdat=171/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:21:11.330] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=72b9e2a475d04a662eeb0996ee9a441e515e91cf4eabd35cc8cb10f51a7febce +(I) [15:21:14.087] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cceb4156d30521a7b5cfea846f548d092648554639c48c66c4a2d8e1422a823c +(I) [15:21:21.047] [000022800]: Local user framerate is [52.897350] +(I) [15:21:21.047] [000022800]: Local user MinDelay=[44ms], MaxDelay=[119ms], AvgDelay=[76ms], minRTT[115ms], maxRTT[262ms], avgRTT[156ms] +(I) [15:21:25.009] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=85/0, mdat=143/286, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=8/2, lb_c=0/0, cast=0/0, cdat=73/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:21:25.525] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2be6c6fbfe68a7d6f05d08b46095d33846fb3710641c7c21da4a8e51c121ba9b +(I) [15:21:29.582] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5c73ab612a052af2a9be7e3d315977a7730680304c300766bdb9e4c8cc1a80bd +(I) [15:21:37.529] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c6a542641ddce4ac7923ab293489d1d4f70cb511607ab1d766179fb863b07bf3 +(I) [15:21:42.056] [000022800]: Local user framerate is [51.529385] +(I) [15:21:42.056] [000022800]: Local user MinDelay=[57ms], MaxDelay=[106ms], AvgDelay=[81ms], minRTT[113ms], maxRTT[240ms], avgRTT[146ms] +(I) [15:21:44.795] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8115482f922ab6156002cf9925febe47a3f3b70a2db47309912c42254daa4e33 +(I) [15:22:03.003] [000022800]: Local user framerate is [53.933819] +(I) [15:22:03.003] [000022800]: Local user MinDelay=[57ms], MaxDelay=[106ms], AvgDelay=[80ms], minRTT[113ms], maxRTT[241ms], avgRTT[144ms] +(I) [15:22:04.027] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3eea8060d461a0d0f201aa5bc62f070822faaeba4b2214a0922af3d3417c27e1 +(I) [15:22:08.002] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=213/0, mdat=344/688, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=23/6, lb_c=0/0, cast=0/0, cdat=195/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:22:17.058] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e53ce7efad392e73db1caa647217e68990d62c0f464033ba55fd3e4824e6c397 +(I) [15:22:18.489] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a74ced4b868c75561bfb4412ac6e654ded329141fd4559cc79eb4da6239ec7ea +(I) [15:22:21.325] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fcc4269e5dce005fe12f4280023d9440b05193150200700cfc95b1ec9e73336c +(I) [15:22:24.005] [000022800]: Local user framerate is [58.911705] +(I) [15:22:24.005] [000022800]: Local user MinDelay=[42ms], MaxDelay=[106ms], AvgDelay=[79ms], minRTT[113ms], maxRTT[252ms], avgRTT[149ms] +(I) [15:22:25.424] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3f6686b0f00eb3b8b4de3662c091c2527cebe3cc7a4697eb4be9062b64e25b66 +(I) [15:22:26.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=89/0, mdat=144/288, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=8/2, lb_c=0/0, cast=0/0, cdat=82/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:22:27.883] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e6e51c00705b5f3a0b6838454a6388bee85d858c349865eeebc4e1548497b199 +(I) [15:22:31.109] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=90027646ac703ad699ebabc9b904c7ac96f6b8de363060710b59fc95f06a2065 +(I) [15:22:34.608] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=99b3e7807a1eac4ba383c3c0adce7504dc99d90232d5f139bc59c3f9071eab14 +(I) [15:22:36.202] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=26caa9eb447786ee64fde28664608a4b085b545858a6b3e85f3cfa725988f5ed +(I) [15:22:38.989] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=88d1498c363cebf6dac0caa69fb327f62ba6569c22d939418b6e0c1d4214fc46 +(I) [15:22:39.701] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d02268b9e62342e888d0293de1d3725ebc20df4bacaca68605d3dc4b166c18ee +(I) [15:22:41.481] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=33d46a255bdba86ce64d733d43b89cda4bec5e6477eae65eb4366591cd73883e +(I) [15:22:45.010] [000022800]: Local user framerate is [51.356346] +(I) [15:22:45.010] [000022800]: Local user MinDelay=[54ms], MaxDelay=[102ms], AvgDelay=[83ms], minRTT[117ms], maxRTT[243ms], avgRTT[165ms] +(I) [15:22:45.682] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=990cdddc39de6b9049f6b00b79448b2606843ac07220d90bdcb64e38779b5e13 +(I) [15:22:54.591] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d8fd27e182e2ac98f20c844614b48936b793068530c8f83191bd9f43c58dd58e +(I) [15:23:06.004] [000022800]: Local user framerate is [54.209339] +(I) [15:23:06.004] [000022800]: Local user MinDelay=[54ms], MaxDelay=[112ms], AvgDelay=[83ms], minRTT[116ms], maxRTT[256ms], avgRTT[158ms] +(I) [15:23:07.372] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d2bb7f430f373acfe08e0aa8bb34faf258bf26975cf1eaf18e3aef022bc7126c +(I) [15:23:09.010] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=161/0, mdat=344/688, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=22/6, lb_c=0/0, cast=0/0, cdat=145/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:23:14.562] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2526a9a90d3d8af1952fcbcd9cf293d0b19b106ed62e29f7384b621af4c69dea +(I) [15:23:21.130] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a83a99e4729c234781f31dd8b7177edcfe4075e57e35e9ce355560da3ee7abf2 +(I) [15:23:27.002] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=75/0, mdat=144/288, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=8/2, lb_c=0/0, cast=0/0, cdat=68/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:23:27.006] [000022800]: Local user framerate is [53.444653] +(I) [15:23:27.006] [000022800]: Local user MinDelay=[54ms], MaxDelay=[112ms], AvgDelay=[84ms], minRTT[116ms], maxRTT[258ms], avgRTT[159ms] +(I) [15:23:28.115] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b3c60251ead3fe6185b97e5d8dc6cf1ec2f0c69da1c7bff83c57051665c0b04c +(I) [15:23:44.564] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8b8c649e6dec040c2b840a90ad498eecfb38d13d27f612a9cae57d96b9787954 +(I) [15:23:48.005] [000022800]: Local user framerate is [54.744522] +(I) [15:23:48.005] [000022800]: Local user MinDelay=[65ms], MaxDelay=[109ms], AvgDelay=[83ms], minRTT[114ms], maxRTT[269ms], avgRTT[154ms] +(I) [15:23:51.051] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=df7c54f961e20b344379b78f895bd6c6fe89ddade2b59a53dd79cca882ed422c +(I) [15:23:52.659] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1afba4840617e4ce4d89e297b05ee32e7f821f356704931c47ed229ed2abb986 +(I) [15:23:58.761] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b432be541147b7c54ea59db0c8c8b6cbb2aaf52cc33f650ee4effa818dbfaebe +(I) [15:24:09.001] [000022800]: Local user framerate is [58.988056] +(I) [15:24:09.001] [000022800]: Local user MinDelay=[53ms], MaxDelay=[109ms], AvgDelay=[81ms], minRTT[110ms], maxRTT[273ms], avgRTT[153ms] +(I) [15:24:09.755] [000023200]: Read bytes [0,"MatchReceivedChatMessage",3264,[72076,"help","help",3,5872898]] +(I) [15:24:09.766] [000022800]: Received chat message { help } +(I) [15:24:09.766] [000022800]: Starting FilterChatJob for message { help } +(I) [15:24:09.825] [000022800]: Posting chat event from FilterChatJob for message { help } +(I) [15:24:09.854] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c0c9e937756d5fc2ea1a9f52fc175db04c4144ad95ae6edb1d76d132fd83cbc8 +(I) [15:24:10.001] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=180/0, mdat=344/688, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=22/6, lb_c=0/0, cast=0/0, cdat=171/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:24:10.028] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:24:10.029] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:24:10.029] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:24:10.029] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:24:10.029] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:24:10.029] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:24:10.029] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:24:10.029] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:24:10.029] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:24:10.029] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:24:10.029] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:24:10.029] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:24:10.029] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:24:10.029] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:24:10.029] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:24:10.029] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:24:10.029] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:24:10.029] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:24:10.029] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:24:10.029] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:24:10.029] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:24:10.029] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:24:10.029] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:24:10.029] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:24:10.029] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:24:10.029] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:24:10.029] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:24:10.386] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:24:10.386] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:24:10.386] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:24:10.386] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:24:10.386] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:24:10.386] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:24:10.386] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:24:20.205] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=53cde38817b5f0656a211902ce2d2c0fc908172c492410e375b978fd6a352c41 +(I) [15:24:22.723] [000023200]: Read bytes [0,"MatchReceivedChatMessage",3264,[72076,"Negativ","Negativ",3,5872898]] +(I) [15:24:22.728] [000022800]: Received chat message { Negativ } +(I) [15:24:22.728] [000022800]: Starting FilterChatJob for message { Negativ } +(I) [15:24:22.784] [000022800]: Posting chat event from FilterChatJob for message { Negativ } +(I) [15:24:24.391] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ebafb2a349602f158c5b520ed24b8edfb68ec2842d8aa0304b31d668cbe57fec +(I) [15:24:28.001] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=104/2, mdat=144/288, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/2, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/1, lb_p=8/2, lb_c=0/0, cast=0/0, cdat=93/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:24:30.013] [000022800]: Local user framerate is [58.244175] +(I) [15:24:30.013] [000022800]: Local user MinDelay=[69ms], MaxDelay=[91ms], AvgDelay=[79ms], minRTT[142ms], maxRTT[188ms], avgRTT[154ms] +(I) [15:24:32.493] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7b16af6edf09e33c657876557502767dc9f5af52b7d3151cd1126852cc9033ce +(I) [15:24:36.719] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=62fb488e5550c1c3a12e8991e94383914e7e2d2016559ac91f112ab9b7f4a335 +(I) [15:24:43.246] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=404e8cc820a945b9098686ada0c67ccab3008cc4e6708cda7f698b19b2cfaa5b +(I) [15:24:44.130] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=88680c8cc79b41898140202a55d0f3c45ea49a67250a1f4abf542febbf1e1e21 +(I) [15:24:45.313] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4e7bb3b439b8a4e5bcac74c224727e6519d0e2e8478269211a18cbaf80c35081 +(I) [15:24:46.585] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=98758d283d77c2624615396b03e700f44db0db7fb7a1597f4f15ef167180ec4f +(I) [15:24:48.549] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b19fedac6ccbe46896241d8611776d31015a95d302677971084e0243c242a357 +(I) [15:24:49.161] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=60d987349650b00f3872b63cfacebc208d64a5ce86eaddbc6a0c95cec2182675 +(I) [15:24:51.013] [000022800]: Local user framerate is [54.306553] +(I) [15:24:51.013] [000022800]: Local user MinDelay=[46ms], MaxDelay=[107ms], AvgDelay=[77ms], minRTT[115ms], maxRTT[252ms], avgRTT[148ms] +(I) [15:24:54.411] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ed818793785e79bc5be991f65d8737a51fdc530445734c54e11116235b83e848 +(I) [15:25:11.001] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=226/0, mdat=344/688, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=23/6, lb_c=0/0, cast=0/0, cdat=204/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:25:12.028] [000022800]: Local user framerate is [57.992008] +(I) [15:25:12.028] [000022800]: Local user MinDelay=[46ms], MaxDelay=[114ms], AvgDelay=[77ms], minRTT[115ms], maxRTT[265ms], avgRTT[146ms] +(I) [15:25:14.030] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=38a7525de4849d2cc8b1ec58ac1b87665a9b24705b06420987a5abd0ba2c5eeb +(I) [15:25:25.976] [000022800]: MOD -- Game Over at frame 17736 +(I) [15:25:26.086] [000022800]: Report sent for profileID[3264] -> race=[137123], result=[0], XP Gain=[22707] +(I) [15:25:26.086] [000022800]: Report sent for profileID[261781] -> race=[203852], result=[1], XP Gain=[21583] +(I) [15:25:26.086] [000022800]: Report sent for profileID[71707] -> race=[137123], result=[0], XP Gain=[11485] +(I) [15:25:26.086] [000022800]: Report sent for profileID[361148] -> race=[129494], result=[1], XP Gain=[17448] +(I) [15:25:26.086] [000022800]: Report sent for profileID[72076] -> race=[137123], result=[0], XP Gain=[18306] +(I) [15:25:26.086] [000022800]: Report sent for profileID[370468] -> race=[203852], result=[1], XP Gain=[26831] +(I) [15:25:26.086] [000022800]: Report sent for profileID[58617] -> race=[198437], result=[0], XP Gain=[20703] +(I) [15:25:26.086] [000022800]: Report sent for profileID[392397] -> race=[129494], result=[1], XP Gain=[20800] +(I) [15:25:26.127] [000022800]: Party::SetStatus - S_CONFIGURING +(I) [15:25:26.150] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d9feb72799f3a645512b55cad49b335a47b8f976863627daf638f5d1a6b68ed4 +(I) [15:25:26.150] [000022800]: Sending matchinfo change #14 +(E) [15:25:26.311] [000022800]: Rejecting packet type 0 that claims to come from ourself +(I) [15:25:27.001] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ab05ff084992dbdd8e9e610f30c19fa043ad6ad593a5069456ed075cf113fb5a +(I) [15:25:27.001] [000022800]: MPMatchSetup::OnMatchEvent - MET_ReportResults - result [0] +(I) [15:25:27.001] [000022800]: GameObjController - OnMatchEvent: event type 9 +(I) [15:25:27.518] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=187a0c35eb31f5a0899fd338e3982a45dae17a8229faf76c45cf33289f06842b +(I) [15:25:28.036] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cff48eb2a0ef4105972c26c58f32fa7015796341b93f98900ce939961945d083 +(I) [15:25:28.550] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ca818fe774e5e85fbdb98432189763d9f3a1e7baac7096ef6a6a569adf9d045d +(I) [15:25:29.007] [000003784]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=63/2, mdat=127/254, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=1/2, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=1/1, lb_p=7/2, lb_c=0/0, cast=0/0, cdat=59/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=1/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [15:25:29.058] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a5eb0106d2be6dc7aa001e3ebe2c2e20e61ad4f06232f803b2bc9eab2440de20 +(I) [15:25:29.468] [000022800]: GameApp::SetTargetState : new (UnloadedGame) old (Uninitialized) +(I) [15:25:29.488] [000022800]: GameApp::SetState : new (UnloadingGame) old (Game) +(I) [15:25:29.562] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=99c8b243a1ef247dbfbc4935a6a1a8af07d6ab86691251f96d614eec092aad51 +(I) [15:25:29.710] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:29.765] [000022800]: GetPartyStatsByID found 1 teams for user ID 3264 +(I) [15:25:30.063] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=bff9eec422b89d30e68b5802cff45bf272be52ddfc5037232e7232acf889596e +(I) [15:25:30.208] [000023200]: Read bytes [0,"AvatarStatsUpdatedMessage",3264,[[[7,3264,64,"",1680528329]]]] +(I) [15:25:30.208] [000023200]: Read bytes [0,"AvatarStatsUpdatedMessage",3264,[[[9,3264,90876,"",1680528329]]]] +(I) [15:25:30.208] [000023200]: Read bytes [0,"AvatarStatsUpdatedMessage",3264,[[[27,3264,18255,"",1680528329]]]] +(I) [15:25:30.208] [000023200]: Read bytes [0,"AvatarUpdateMessage",3264,[[2732,3264,"/steam/76561198023526153","","Wolfsindis","",15990,2261,2261,2074389,null,"76561198023526153",3,[]]]] +(I) [15:25:30.208] [000023200]: Read bytes [0,"AvatarUpdateMessage",3264,[[355,71707,"/steam/76561198057851590","","Le mérovingien","",321961,301,301,2074389,null,"76561198057851590",3,[]]]] +(I) [15:25:30.208] [000023200]: Read bytes [0,"AvatarUpdateMessage",3264,[[1627,72076,"/steam/76561198006768556","","BLITZKRIEG BOB","",37927,1161,1161,2074389,null,"76561198006768556",3,[]]]] +(I) [15:25:30.208] [000023200]: Read bytes [0,"AvatarUpdateMessage",3264,[[973,261781,"/steam/76561198869106805","","Treiben","",143562,81,81,2074437,null,"76561198869106805",3,[]]]] +(I) [15:25:30.208] [000023200]: Read bytes [0,"AvatarUpdateMessage",3264,[[700,361148,"/steam/76561197976307373","","McLovin","",257249,641,641,2074389,null,"76561197976307373",3,[]]]] +(I) [15:25:30.208] [000023200]: Read bytes [0,"AvatarUpdateMessage",3264,[[2594,370468,"/steam/76561198079282861","","既定之天命","",267511,931,931,2074437,null,"76561198079282861",3,[]]]] +(I) [15:25:30.208] [000023200]: Read bytes [0,"AvatarUpdateMessage",3264,[[822,392397,"/steam/76561198134958876","","蹦嚓蹦嚓蹦嚓","",291482,351,351,2074437,null,"76561198134958876",3,[]]]] +(I) [15:25:30.212] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:30.212] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:30.212] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:30.212] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:30.212] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:30.212] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:30.212] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:30.503] [000022800]: GameObj::ShutdownGameObj +(I) [15:25:30.503] [000022800]: GetMaxFrameTimeFromProfile: players=8 expected FPS=100.000000, bars=0, max avg=0.000, sd=0.000, 0 samples = +(I) [15:25:30.503] [000022800]: PerformanceRecorder::EndRecording - game size=8, max average=0.019857, worst frame=0.010000 +(I) [15:25:30.503] [000022800]: Recording: No [8 players] + +(I) [15:25:30.503] [000022800]: Max/Avg: 0.02, 0.02 sec (fps=50.36, 65.86) (111 samples) + +(I) [15:25:30.503] [000022800]: Bars: 0 + +(I) [15:25:30.504] [000022800]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_seconds_played] +(I) [15:25:30.504] [000022800]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_units_produced] +(I) [15:25:30.504] [000022800]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_units_killed] +(I) [15:25:30.504] [000022800]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_units_lost] +(I) [15:25:30.516] [000022800]: StatArtWarningsCount 0 +(I) [15:25:30.516] [000022800]: StatDataWarningsCount 0 +(I) [15:25:30.640] [000022800]: SIM -- m_bInDestroyAll is true, When entities are being destroyed, cannot create new entities w_57mm_shell +(I) [15:25:31.490] [000023200]: Read bytes [0,"GameResultNotificationMessage",3264,[[[3264,23,137123,0,[1,1,1,1],15990,[["unitprod",78],["vvetrank",14],["cabil",2],["dmgdone",12171],["plost",7],["svetrank",6],["reqmax",0],["cpearn",11],["reqspnt",0],["powearn",0],["blost",1],["elitekill",13],["edeaths",123],["structdmg",0],["pcap",13],["inactperiod",32],["lowintperiod",0],["precap",16],["sqkill",22],["popmax",0],["powspnt",0],["sqprod",21],["bprod",9],["svetxp",15600],["vabnd",0],["addonkill",114],["totalcmds",3296],["gammaspnt",0],["vkill",4],["objdmh",0],["abil",87],["sqlost",13],["vcap",0],["vlost",4],["gt",2217],["upg",90],["vvetxp",16700],["reqearn",0],["vp1",0],["vp0",0],["erein",79],["cflags",0],["wpnpu",0],["ekills",127],["powmax",0],["vprod",5]],0,10,[],null,[],[],[],[],[],[]],[58617,23,198437,0,[1,1,1,1],232329,[["unitprod",54],["vvetrank",20],["cabil",5],["dmgdone",17073],["plost",7],["svetrank",1],["reqmax",0],["cpearn",11],["reqspnt",0],["powearn",0],["blost",0],["elitekill",13],["edeaths",144],["structdmg",0],["pcap",12],["inactperiod",42],["lowintperiod",0],["precap",1],["sqkill",19],["popmax",0],["powspnt",0],["sqprod",17],["bprod",5],["svetxp",1200],["vabnd",0],["addonkill",140],["totalcmds",1404],["gammaspnt",0],["vkill",3],["objdmh",0],["abil",90],["sqlost",22],["vcap",0],["vlost",7],["gt",1818],["upg",70],["vvetxp",32600],["reqearn",0],["vp1",0],["vp0",0],["erein",95],["cflags",0],["wpnpu",1],["ekills",154],["powmax",0],["vprod",8]],0,0,[],null,[],[],[],[],[],[]],[71707,23,137123,0,[1,1,1,1],321961,[["unitprod",52],["vvetrank",14],["cabil",7],["dmgdone",11392],["plost",4],["svetrank",6],["reqmax",0],["cpearn",12],["reqspnt",0],["powearn",0],["blost",1],["elitekill",-4],["edeaths",94],["structdmg",0],["pcap",6],["inactperiod",31],["lowintperiod",0],["precap",6],["sqkill",4],["popmax",0],["powspnt",0],["sqprod",19],["bprod",6],["svetxp",8600],["vabnd",0],["addonkill",103],["totalcmds",468],["gammaspnt",0],["vkill",0],["objdmh",0],["abil",98],["sqlost",14],["vcap",0],["vlost",6],["gt",2217],["upg",36],["vvetxp",20700],["reqearn",0],["vp1",0],["vp0",0],["erein",67],["cflags",0],["wpnpu",2],["ekills",99],["powmax",0],["vprod",10]],0,10,[],null,[],[],[],[],[],[]],[72076,23,137123,0,[1,1,1,1],37927,[["unitprod",72],["vvetrank",19],["cabil",15],["dmgdone",11172],["plost",14],["svetrank",3],["reqmax",0],["cpearn",15],["reqspnt",0],["powearn",0],["blost",1],["elitekill",4],["edeaths",123],["structdmg",0],["pcap",16],["inactperiod",72],["lowintperiod",60],["precap",8],["sqkill",16],["popmax",0],["powspnt",0],["sqprod",19],["bprod",6],["svetxp",6000],["vabnd",0],["addonkill",95],["totalcmds",1020],["gammaspnt",0],["vkill",7],["objdmh",0],["abil",71],["sqlost",15],["vcap",0],["vlost",2],["gt",2217],["upg",63],["vvetxp",26700],["reqearn",0],["vp1",0],["vp0",0],["erein",69],["cflags",0],["wpnpu",2],["ekills",99],["powmax",0],["vprod",2]],0,10,[],null,[],[],[],[],[],[]],[261781,23,203852,1,[1,1,1,1],143562,[["unitprod",80],["vvetrank",21],["cabil",7],["dmgdone",16767],["plost",12],["svetrank",2],["reqmax",0],["cpearn",14],["reqspnt",0],["powearn",0],["blost",0],["elitekill",-4],["edeaths",95],["structdmg",0],["pcap",17],["inactperiod",25],["lowintperiod",0],["precap",13],["sqkill",16],["popmax",0],["powspnt",0],["sqprod",26],["bprod",7],["svetxp",2800],["vabnd",0],["addonkill",151],["totalcmds",2468],["gammaspnt",0],["vkill",3],["objdmh",0],["abil",53],["sqlost",24],["vcap",0],["vlost",9],["gt",2217],["upg",56],["vvetxp",30300],["reqearn",0],["vp1",0],["vp0",0],["erein",44],["cflags",0],["wpnpu",0],["ekills",147],["powmax",0],["vprod",12]],0,10,[],null,[],[],[],[],[],[]],[361148,23,129494,1,[1,1,1,1],257249,[["unitprod",78],["vvetrank",20],["cabil",15],["dmgdone",13122],["plost",11],["svetrank",2],["reqmax",0],["cpearn",15],["reqspnt",0],["powearn",0],["blost",0],["elitekill",3],["edeaths",168],["structdmg",0],["pcap",15],["inactperiod",34],["lowintperiod",0],["precap",10],["sqkill",11],["popmax",0],["powspnt",0],["sqprod",18],["bprod",8],["svetxp",5400],["vabnd",0],["addonkill",98],["totalcmds",1063],["gammaspnt",0 +(I) [15:25:31.955] [000022800]: GameApp::SetState : new (UnloadedGame) old (UnloadingGame) +(I) [15:25:31.955] [000022800]: GameApp::SetTargetState : new (Uninitialized) old (UnloadedGame) +(I) [15:25:31.964] [000022800]: RNT_StatsUpdate: Loss notification, profileID 3264, race =137123, level=4, ranking=7777 +(I) [15:25:31.964] [000022800]: RNT_StatsUpdate: Loss notification, profileID 58617, race =198437, level=4, ranking=5877 +(I) [15:25:31.964] [000022800]: RNT_StatsUpdate: Loss notification, profileID 71707, race =137123, level=4, ranking=7104 +(I) [15:25:31.964] [000022800]: RNT_StatsUpdate: Loss notification, profileID 72076, race =137123, level=4, ranking=7062 +(I) [15:25:31.964] [000022800]: RNT_StatsUpdate: Win notification, profileID 261781, race =203852, level=-1, ranking=-1 +(I) [15:25:31.964] [000022800]: RNT_StatsUpdate: Win notification, profileID 361148, race =129494, level=4, ranking=5189 +(I) [15:25:31.964] [000022800]: RNT_StatsUpdate: Win notification, profileID 370468, race =203852, level=-1, ranking=-1 +(I) [15:25:31.964] [000022800]: RNT_StatsUpdate: Win notification, profileID 392397, race =129494, level=-1, ranking=-1 +(I) [15:25:31.991] [000022800]: SessionID : 599d02 - Disconnect called with reasonID 1000 - MatchSetup::Disconnect +(I) [15:25:31.991] [000022800]: MatchSetupManager: Removed queued match [winter_line_8p_mkii] Queue is now [0] +(I) [15:25:31.991] [000022800]: SessionID : 599d02 - Disconnect called with reasonID 1000 - MatchSetup::Disconnect +(I) [15:25:31.998] [000022800]: Disconnect process already running +(I) [15:25:32.001] [000022800]: SessionID : 599bd8 - Disconnect called with reasonID 1000 - Destroying Party +(E) [15:25:32.050] [000022800]: SetVisible called while !IsConnected +(I) [15:25:32.861] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:32.861] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:32.861] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:32.861] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:32.861] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:32.861] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:32.861] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:32.861] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:32.861] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:32.861] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:32.861] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:32.861] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:32.861] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:32.861] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:32.861] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:32.861] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:32.861] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:32.861] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:32.861] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:32.861] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:32.861] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:32.861] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:32.861] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:32.861] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:32.861] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:32.861] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:32.861] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:33.081] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:33.081] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:33.081] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:33.081] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:33.081] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:33.081] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:33.081] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:33.081] [000022800]: Avatar update: C00T16R00X-01 52656C690266 +(I) [15:25:33.323] [000022800]: WorldwideAdvertisementService::Process - EVENT_HOSTMIGRATION +(I) [15:25:33.323] [000022800]: WorldwidePartyService::OnHostMigration - [5872898] Got a queued migration event while disconnecting, ignoring +(I) [15:25:33.323] [000022800]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [15:25:33.323] [000022800]: WorldwidePartyService::PeerRemove, Removing peer ID: 1 +(I) [15:25:33.323] [000022800]: peerremove - peerIDRemoved=261781, reasonID=119, reason debug hint - Forcing peers to disconnect +(I) [15:25:33.324] [000022800]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [15:25:33.324] [000022800]: WorldwidePartyService::PeerRemove, Removing peer ID: 2 +(I) [15:25:33.324] [000022800]: peerremove - peerIDRemoved=361148, reasonID=119, reason debug hint - Forcing peers to disconnect +(I) [15:25:33.324] [000022800]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [15:25:33.324] [000022800]: WorldwidePartyService::PeerRemove, Removing peer ID: 4 +(I) [15:25:33.324] [000022800]: peerremove - peerIDRemoved=370468, reasonID=119, reason debug hint - Forcing peers to disconnect +(I) [15:25:33.324] [000022800]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [15:25:33.324] [000022800]: WorldwidePartyService::PeerRemove, Removing peer ID: 5 +(I) [15:25:33.324] [000022800]: peerremove - peerIDRemoved=71707, reasonID=119, reason debug hint - Forcing peers to disconnect +(I) [15:25:33.324] [000022800]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [15:25:33.324] [000022800]: WorldwidePartyService::PeerRemove, Removing peer ID: 6 +(I) [15:25:33.324] [000022800]: peerremove - peerIDRemoved=392397, reasonID=119, reason debug hint - Forcing peers to disconnect +(I) [15:25:33.324] [000022800]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [15:25:33.324] [000022800]: WorldwidePartyService::PeerRemove, Removing peer ID: 7 +(I) [15:25:33.324] [000022800]: peerremove - peerIDRemoved=72076, reasonID=119, reason debug hint - Forcing peers to disconnect +(I) [15:25:33.324] [000022800]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [15:25:33.324] [000022800]: WorldwidePartyService::PeerRemove, Removing peer ID: 3 +(I) [15:25:33.324] [000022800]: peerremove - peerIDRemoved=3264, reasonID=1000, reason debug hint - MatchSetup::Disconnect +(E) [15:25:33.328] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.339] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.350] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.360] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.370] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.381] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.391] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.402] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.413] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.423] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.434] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.445] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.456] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.467] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.477] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.488] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.499] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.510] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.520] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.531] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.541] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.552] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.563] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.574] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.584] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [15:25:33.593] [000022800]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [15:25:33.593] [000022800]: WorldwidePartyService::PeerRemove, Removing peer ID: 1 +(I) [15:25:33.593] [000022800]: peerremove - peerIDRemoved=3264, reasonID=1000, reason debug hint - Destroying Party +(E) [15:25:33.595] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.595] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.606] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.606] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.617] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.617] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.627] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.627] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.638] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.638] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.649] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.649] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.659] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.659] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.670] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.670] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.680] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.680] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.691] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.691] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.702] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.702] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.712] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.712] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.723] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.723] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.733] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.733] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.744] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.744] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.754] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.754] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.765] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.765] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.776] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.776] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.787] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.787] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.798] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.798] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.808] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.809] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.820] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.820] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.831] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.831] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.841] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.841] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.851] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.851] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.862] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.862] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.873] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.873] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.884] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.884] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.895] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.895] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.906] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.906] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [15:25:33.910] [000022800]: PeerRemoveAll - flushing local session peer data +(I) [15:25:33.910] [000022800]: LeaveSessionInternal - no action taken, needLeave=0, service=0 +(I) [15:25:33.910] [000022800]: Destroyed Matchinfo +(E) [15:25:33.910] [000022800]: Socks::Free: Socket 0/13104 did not close properly before being freed. +(I) [15:25:33.910] [000022800]: OnDestroyPartyNotification - partyID = 5872898, prevID = -1 +(I) [15:25:33.910] [000022800]: OnDestroyPartyNotification - partyID = 5872898, prevID = -1 +(E) [15:25:33.916] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.927] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.938] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.948] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.959] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.969] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.980] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:33.990] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:34.001] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:34.012] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:34.023] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:34.034] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:34.044] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [15:25:34.055] [000003784]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [15:25:34.059] [000022800]: PeerRemoveAll - flushing local session peer data +(I) [15:25:34.059] [000022800]: LeaveSessionInternal - no action taken, needLeave=0, service=0 +(I) [15:25:34.059] [000022800]: Destroyed Matchinfo +(E) [15:25:34.059] [000022800]: Socks::Free: Socket 0/13140 did not close properly before being freed. +(I) [15:25:34.059] [000022800]: OnDestroyPartyNotification - partyID = 5872600, prevID = -1 +(I) [15:25:34.060] [000022800]: OnDestroyPartyNotification - partyID = 5872600, prevID = -1 +(I) [15:25:44.340] [000022800]: GameApp::SetTargetState : new (Quit) old (Uninitialized) +(I) [15:25:44.346] [000022800]: GameApp::SetState : new (FrontEnd) old (UnloadedGame) +(I) [15:25:44.606] [000022800]: GameApp::SetState : new (Unloaded) old (FrontEnd) +(I) [15:25:44.891] [000022800]: GameApp::SetState : new (Quit) old (Unloaded) +(I) [15:25:48.122] [000022800]: WWise Terminating +(I) [15:25:48.122] [000022800]: Terminating SoundEngine +(I) [15:25:48.321] [000022800]: Terminating Streaming Manager +(I) [15:25:48.323] [000022800]: Terminating Memory Manager +(I) [15:25:48.608] [000020556]: Unregistered essence thread: [Render_Thread] +(I) [15:25:53.542] [000014280]: Unregistered essence thread: [Simulation_Thread] +(I) [15:25:53.625] [000022800]: RPC -- Stopping RpcServer +(I) [15:25:53.625] [000002328]: Unregistered essence thread: [AI_Thread] +(I) [15:25:53.630] [000022800]: Purging: Resource [Terrain Material Mask]-[data:art\scenarios\textures\splats\fx\damage\fx_ground_scorch.tmm] still referenced! [visible] +(I) [15:25:53.630] [000022800]: Purging: Resource [Terrain Material Mask]-[data:art\scenarios\textures\splats\debris\debris_bits_01.tmm] still referenced! [visible] +(I) [15:25:53.637] [000022800]: call to FlushJobs +(I) [15:25:53.647] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c9e12a8c5914bb398273993981011686b09fd95bd4b22e6e2631dd0f1711e807 +(E) [15:25:58.640] [000022800]: NetworkManagerInternal waited 5003 ms for async jobs to complete without success +(E) [15:25:58.640] [000022800]: WorldwideAdvertisementService_ApplyPlatformFilterJob job did not complete before NetworkManagerInternal shut down +(E) [15:25:58.640] [000022800]: WorldwideAdvertisementService_ApplyPlatformFilterJob job did not complete before NetworkManagerInternal shut down +(E) [15:25:58.640] [000022800]: WorldwideAdvertisementService_ApplyPlatformFilterJob job did not complete before NetworkManagerInternal shut down +(I) [15:25:58.640] [000022800]: call to FlushJobs +(I) [15:25:58.842] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b0f838d3c7f19130d7a9a67403c4abbb791c4be902cf7a48296095dbdbd3266f +(E) [15:25:58.905] [000023200]: Socks::Free: Socket 0/6048 did not close properly before being freed. +(I) [15:25:59.343] [000022800]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230403/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8eb22f2604ba45bd6256cc2a59f365589881878f1c41bf03129a083cda873fc7 +(E) [15:26:03.644] [000022800]: NetworkManagerInternal waited 5004 ms for async jobs to complete without success +(E) [15:26:03.644] [000022800]: WorldwideAdvertisementService_ApplyPlatformFilterJob job did not complete before NetworkManagerInternal shut down +(E) [15:26:03.644] [000022800]: WorldwideAdvertisementService_ApplyPlatformFilterJob job did not complete before NetworkManagerInternal shut down +(E) [15:26:03.644] [000022800]: WorldwideAdvertisementService_ApplyPlatformFilterJob job did not complete before NetworkManagerInternal shut down +(I) [15:26:03.650] [000022800]: Beginning call to ~NetworkManagerInternal +(I) [15:26:03.650] [000022800]: ~NetworkManagerInternal is about to join threads +(I) [15:26:03.666] [000022800]: We have reached the end of ~NetworkManagerInternal +(E) [15:26:03.666] [000022800]: Socks::Free: Socket 0/1680 did not close properly before being freed. +(I) [15:26:03.673] [000022800]: Automatch2Internal: Fade to black +(I) [15:26:03.674] [000022800]: AutomatchInternal: Fade to black +(I) [15:26:05.138] [000022800]: FILESYSTEM -- filepath failed to remove alias, missing alias 'stats' +(I) [15:26:06.048] [000022800]: Unregistered essence thread: [Main_Thread] +(I) [15:26:06.057] [000022800]: Threading system shutdown + +Application closed without errors diff --git a/src-tauri/test_assets/warnings-2.log b/src-tauri/test_assets/warnings-2.log new file mode 100644 index 0000000..db5c800 --- /dev/null +++ b/src-tauri/test_assets/warnings-2.log @@ -0,0 +1,3555 @@ +RelicCoH3 started at 2023-04-02 20:08 [Paris, Madrid (heure d’été) UTC 01:00] +OS Win 10.0.19045, 32687MB Physical Memory, 22490 Physical Available, 40879 Virtual Total, 26249 Virtual Available, 8192 Page file. +RUN-OPTIONS [-crash_on_initlist_failure] +WORKING-DIR [C:\Program Files (x86)\Steam\steamapps\common\Company of Heroes 3\] +USER [Cutil] +COMPUTER [DESKTOP-TQF4QTI] +LOCALE [fr-FR] + +(I) [20:08:39.083] [000013504]: Version.cpp - translation info queried modulefilename C:\Program Files (x86)\Steam\steamapps\common\Company of Heroes 3\RelicCoH3.exe, len 1604 +(I) [20:08:39.083] [000013504]: Version [1.1.1.10612] Info [[Anvil][anvil][stable][rtm][3982861]] +(I) [20:08:39.109] [000013504]: GameApp::SetState : new (Uninitialized) old (Uninitialized) +(I) [20:08:39.109] [000013504]: Loading step: [Platform] +(I) [20:08:39.109] [000013504]: Loading step: [Logger thread] +(I) [20:08:39.109] [000013504]: Loading step: [TimeStamp] +(I) [20:08:39.109] [000013504]: Loading step: [Timeout thread] +(I) [20:08:39.109] [000013504]: Loading step: [CoInitialize] +(I) [20:08:39.109] [000013504]: Loading step: [Process setup] +(I) [20:08:39.109] [000013504]: Loading step: [MemoryEnvironment] +(I) [20:08:39.416] [000013504]: Loading step: [InitReflectSystem] +(I) [20:08:39.454] [000013504]: Loading step: [InitGameActivator] +(I) [20:08:39.454] [000013504]: Loading step: [InitThreadingModel] +(I) [20:08:39.454] [000013504]: Primary CPU is a 3792MHz [Intel(R) Core(TM) i7-10700K CPU @ 3.80GHz] running at 3792MHz +(I) [20:08:39.454] [000013504]: Architecture [9], Level [6], Revision [42245]. +(I) [20:08:39.454] [000013504]: 16 logical processor(s) detected. +(I) [20:08:39.454] [000013504]: 8 physical processor(s) detected. +(I) [20:08:39.454] [000013504]: 1 processor(s) nodes detected. +(I) [20:08:39.455] [000013504]: Threading system initialized to [16]/[16] cores +(I) [20:08:39.455] [000013504]: Loading step: [ThreadingModel Main thread] +(I) [20:08:39.455] [000013504]: Registered essence thread: [Main_Thread] usesRcssWorkerThreads: [true] +(I) [20:08:39.455] [000013504]: Loading step: [Taskbar] +(I) [20:08:39.456] [000013504]: Loading step: [Havok] +(I) [20:08:39.511] [000013504]: Loading step: [Additional crash information] +(I) [20:08:39.511] [000013504]: Loading step: [Single Instance Check] +(I) [20:08:39.511] [000013504]: Loading step: [Config File] +(I) [20:08:39.576] [000013504]: GAME -- Current Steam name is [UMirinBrah?] +(I) [20:08:39.576] [000013504]: GAME -- steam returned language 'french' +(I) [20:08:39.577] [000013504]: GAME -- [Company of Heroes 3] set to language [fr] +(I) [20:08:39.586] [000013504]: Loading step: [Render Window] +(I) [20:08:39.586] [000013504]: Loading step: [Statgraph] +(I) [20:08:39.586] [000013504]: Loading step: [StatGraph Stats] +(I) [20:08:39.586] [000013504]: Loading step: [ArchiveManager] +(I) [20:08:39.586] [000013504]: Loading step: [Filesystem] +(I) [20:08:39.586] [000013504]: Using [C:\Users\Cutil\Documents\My Games\Company of Heroes 3\] as base writable folder +(I) [20:08:39.586] [000013504]: Game -- System temp path is [C:\Users\Cutil\AppData\Local\Temp\] +(I) [20:08:39.586] [000013504]: Loading step: [FileLogger] +(I) [20:08:39.586] [000013504]: Loading step: [Lua GameBinding Traits] +(I) [20:08:39.586] [000013504]: Loading step: [Lua Libraries] +(I) [20:08:39.586] [000013504]: Loading step: [System Config] +(I) [20:08:39.586] [000013504]: FILESYSTEM -- filepath failure, missing alias 'peruserdata:configuration_user.lua' +(I) [20:08:39.588] [000013504]: Loading step: [User Folder Unloader] +(I) [20:08:39.588] [000013504]: Loading step: [Load/Save Config Settings] +(I) [20:08:39.588] [000013504]: Loading step: [Warnings] +(I) [20:08:39.588] [000013504]: Loading step: [Load Debug Symbols] +(I) [20:08:39.589] [000013504]: Loading step: [InitStateTreeManager] +(I) [20:08:39.589] [000013504]: Loading step: [Prerequisite Manager] +(I) [20:08:39.589] [000013504]: Loading step: [Prerequisite Entries] +(I) [20:08:39.589] [000013504]: Loading step: [GameModule Pre Mod Interface Init] +(I) [20:08:39.589] [000013504]: Loading step: [ModManager] +(I) [20:08:39.589] [000013504]: MODULE -- Creating module 'RelicGame'. +(I) [20:08:39.589] [000021024]: DB -- Unable to load symbols. +(I) [20:08:39.595] [000013504]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\attrib.sga 60745539 B [ID:cc658689e8327aa213f047ca598ee0c9] [Ver:fffc2ad691247ca546eb568ea3624c16] [Sig:3125471753551085620] +(I) [20:08:39.610] [000013504]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\engine\archives\data.sga 31095123 B [ID:16c0f95516b6bd76239a8a743a290dba] [Ver:5744771b6bf7d0076da38fd66698ab66] [Sig:11499196241452783557] +(I) [20:08:39.610] [000013504]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\engine\archives\ui.sga 1110871 B [ID:09480279ef1f221e1467f0feeeb28aa2] [Ver:817c54e161761f5425f492c437a1b118] [Sig:7674468942959196934] +(I) [20:08:39.611] [000013504]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\common\archives\data.sga 92639 B [ID:16c0f95516b6bd76239a8a743a290dba] [Ver:13a054cf58402ebb44182403cfe05038] [Sig:15853610410799954909] +(I) [20:08:39.615] [000013504]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\data.sga 21299274 B [ID:91eb1b764829dce596439b0b53d5d902] [Ver:ac4174345deeb3145864ef2a7dbd4391] [Sig:11530009210441286727] +(I) [20:08:39.629] [000013504]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\art.sga 3564161578 B [ID:335f6c45d2d00556a1b300110fb67f63] [Ver:c21b09f2d94a56134142665b3eab8a9c] [Sig:17490811758148910231] +(I) [20:08:39.644] [000013504]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\artbuildings.sga 2066838663 B [ID:e630934e80bb0be959ddfc54da7e1e54] [Ver:51f69a75b798643e7a5faa62943db80c] [Sig:10658511370560815737] +(I) [20:08:39.659] [000013504]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\artenvironment.sga 2423748670 B [ID:a8353aa1bdde46ced0f67029944c406c] [Ver:f53ae9048fc4aa8eee4bcf18ae2f6457] [Sig:4331235070509622060] +(I) [20:08:39.670] [000013504]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\artscenarios.sga 2981297866 B [ID:ffdeb91fab5122cf1ab7c37d119dc5d5] [Ver:a09f6aa5c4c12d8b7ecd4f1278ad3c1c] [Sig:13314800952431733564] +(I) [20:08:39.677] [000013504]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\scenarios.sga 11052994 B [ID:4f6bed42a792fb5b9eae14472a7e901c] [Ver:8072fbb2aca8fd8a0014fc6411c7cb1c] [Sig:16126132213784051283] +(I) [20:08:39.679] [000013504]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\scenariosmp.sga 328364378 B [ID:709197811710287335bf21d3f3e018fe] [Ver:ad199157ee6afa02a7ffe576c84bacc4] [Sig:15283554895631761904] +(I) [20:08:39.680] [000013504]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\scenariossp.sga 1596312307 B [ID:cb1eb03a442e23d7da269decdebfe11b] [Ver:3541e20f490843f060f48daa04addebb] [Sig:54652272910917665] +(I) [20:08:39.685] [000013504]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\ui.sga 806555417 B [ID:33a67d1cab1e8601f71ae7973f75c08b] [Ver:22e416b7acc364a383d3e859b86f05ad] [Sig:14156574695406353630] +(I) [20:08:39.689] [000013504]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\tools\archives\data.sga 1848 B [ID:94195021539650ebc2111161f08a5693] [Ver:363d1dba1f718735acb01aab51a167af] [Sig:15239600389611538894] +(I) [20:08:39.689] [000013504]: Archive [DevOnly] is [missing]! [Skipping.] +(I) [20:08:39.690] [000013504]: Archive [DevOnly] is [missing]! [Skipping.] +(I) [20:08:39.690] [000013504]: Archive [ScenariosDev] is [missing]! [Skipping.] +(I) [20:08:39.690] [000013504]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\localefrench.sga 810531 B [ID:11902a9015b2b64dbc05d7d28aa60ed1] [Ver:8423cab9b440723281b4c33a6e15ef60] [Sig:13699425864979967707] +(I) [20:08:39.690] [000013504]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\movies.sga 52235 B [ID:34a3a1146f0574f5dc457975826e2333] [Ver:381b02d275791f3782d18d365d20118c] [Sig:4218715664112498104] +(I) [20:08:39.691] [000013504]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\engine\archives\reflect.sga 1669858 B [ID:cf317ce4d037d959d1f61ec4ba4b95da] [Ver:4000d665483927fa7b057bfb03cd677a] [Sig:3196823603185954132] +(I) [20:08:39.692] [000013504]: FILESYSTEM -- filepath failure, path does not exist 'c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\data\telemetry\' +(I) [20:08:39.692] [000013504]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\engine\archives\dx12shadersandedfs.sga 43153 B [ID:f5a37cc293ebf676913da1bdd46d163b] [Ver:544470eaba526c861bba259694ac91e1] [Sig:15583880971339910871] +(I) [20:08:39.693] [000013504]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\engine\archives\dx12assets.sga 7879916 B [ID:6dee0a72320066df084864e3fd8db247] [Ver:0962f8a6da7117c12985a7f93e215627] [Sig:17757088786139192516] +(I) [20:08:39.694] [000013504]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\common\archives\dx12shadersandedfs.sga 2076328 B [ID:bcff99d52833fd8459ed8d990c584b6d] [Ver:a040d38374382a58c497791fc9e5ad53] [Sig:6694708320012597026] +(I) [20:08:39.696] [000013504]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\common\archives\dx12assets.sga 1233892 B [ID:2916e14abbb8c29a770cabc48186eae9] [Ver:904fea0e86224b0a27774a9adee1ee6a] [Sig:202420786684442498] +(I) [20:08:39.697] [000013504]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\dx12shadersandedfs.sga 7441047 B [ID:17b342a4951806a6286037aad597bfb4] [Ver:00bc6b25e91c79930ddf17aaebd2f784] [Sig:5975243170389471107] +(I) [20:08:39.697] [000013504]: Loading step: [Localization] +(I) [20:08:39.713] [000013504]: Loading step: [Game] +(I) [20:08:39.713] [000013504]: Loading step: [SimStaticApp] +(I) [20:08:39.713] [000013504]: Loading step: [Family Manager] +(I) [20:08:39.716] [000013504]: UTIL -- Throwing 'Unable to open file' exception on 'Attrib:Attrib\custom_entity_state_tree_reference_ids.rgd' +(I) [20:08:39.716] [000013504]: UTIL -- Failed to Load BinaryConfig file: 'Attrib:Attrib\custom_entity_state_tree_reference_ids.rgd', error: 'Unable to open file!' +(I) [20:08:39.716] [000013504]: UTIL -- Throwing 'Unable to open file' exception on 'Attrib:Attrib\custom_deferred_entity_state_tree_reference_ids.rgd' +(I) [20:08:39.716] [000013504]: UTIL -- Failed to Load BinaryConfig file: 'Attrib:Attrib\custom_deferred_entity_state_tree_reference_ids.rgd', error: 'Unable to open file!' +(I) [20:08:39.716] [000013504]: UTIL -- Throwing 'Unable to open file' exception on 'Attrib:Attrib\custom_physical_state_tree_reference_ids.rgd' +(I) [20:08:39.716] [000013504]: UTIL -- Failed to Load BinaryConfig file: 'Attrib:Attrib\custom_physical_state_tree_reference_ids.rgd', error: 'Unable to open file!' +(I) [20:08:39.716] [000013504]: UTIL -- Throwing 'Unable to open file' exception on 'Attrib:Attrib\custom_global_state_tree_reference_ids.rgd' +(I) [20:08:39.716] [000013504]: UTIL -- Failed to Load BinaryConfig file: 'Attrib:Attrib\custom_global_state_tree_reference_ids.rgd', error: 'Unable to open file!' +(I) [20:08:39.716] [000013504]: UTIL -- Throwing 'Unable to open file' exception on 'Attrib:Attrib\custom_squad_state_tree_reference_ids.rgd' +(I) [20:08:39.716] [000013504]: UTIL -- Failed to Load BinaryConfig file: 'Attrib:Attrib\custom_squad_state_tree_reference_ids.rgd', error: 'Unable to open file!' +(I) [20:08:39.716] [000013504]: Loading step: [SimApp] +(I) [20:08:39.716] [000013504]: Loading step: [Property Bag Registration] +(I) [20:08:39.720] [000013504]: Loading step: [State Tree Manager] +(I) [20:08:39.873] [000013504]: Loading step: [Sound - Rtpc Event Database Init] +(I) [20:08:39.873] [000013504]: Loading step: [Property Bag Manager] +(I) [20:08:40.165] [000013504]: MapGen - Failed to load: m_defaultCampaignPlayerStartMarker != nullptrFailed loading an attribute data field for map generation. It is likely that your attribute data is out of sync with your local build or build from the build launcher. +(I) [20:08:40.165] [000013504]: MapGen - Failed to load: m_defaultMultiplayerPlayerStartMarker != nullptrFailed loading an attribute data field for map generation. It is likely that your attribute data is out of sync with your local build or build from the build launcher. +(I) [20:08:40.165] [000013504]: MapGen - Failed to load: m_defaultOtherPlayerStartMarker != nullptrFailed loading an attribute data field for map generation. It is likely that your attribute data is out of sync with your local build or build from the build launcher. +(I) [20:08:42.713] [000013504]: PropertyBagManager Loaded in 2.840000s +(I) [20:08:42.713] [000013504]: Loading step: [Modifier Callbacks Initialize] +(I) [20:08:42.713] [000013504]: Loading step: [HandleIndex Manager] +(I) [20:08:42.713] [000013504]: Loading step: [EntityBlueprintManager] +(I) [20:08:42.715] [000013504]: Loading step: [ReflectPostExternalSystemsInited] +(I) [20:08:42.721] [000013504]: Loading step: [ModPackManager] +(I) [20:08:42.722] [000013504]: Loading step: [ModDllSetup] +(I) [20:08:42.722] [000013504]: Loading step: [FilePath Filter] +(I) [20:08:42.722] [000013504]: Loading step: [Locale System] +(I) [20:08:42.722] [000013504]: Loading step: [Compatible Architecture Check] +(I) [20:08:42.722] [000013504]: Loading step: [Compatible OS Check] +(I) [20:08:42.722] [000013504]: Loading step: [Multicore Check] +(I) [20:08:42.722] [000013504]: Loading step: [Parental Control] +(I) [20:08:42.723] [000013504]: Loading step: [NetworkGlobal] +(I) [20:08:42.723] [000013504]: Initializing Server Settings: server=coh3, title=coh3 +(I) [20:08:42.724] [000013504]: WorldwideLoginService::WorldwideLoginService - initializing +(I) [20:08:42.725] [000013504]: SystemCertsWin: Opened the CA system store. +(I) [20:08:42.725] [000013504]: WindowsCertificates: Adding certificate; subject=/C=US/ST=California/L=Irvine/O=Blizzard Entertainment/OU=Battle.net/CN=Blizzard Battle.net Local Cert issuer=/C=US/ST=California/L=Irvine/O=Blizzard Entertainment/OU=Battle.net/CN=Blizzard Battle.net Local Cert +(I) [20:08:42.725] [000013504]: WindowsCertificates: Adding certificate; subject=/DC=com/DC=microsoft/CN=Microsoft Root Certificate Authority issuer=/DC=com/DC=microsoft/CN=Microsoft Root Certificate Authority +(I) [20:08:42.725] [000013504]: WindowsCertificates: Adding certificate; subject=/CN=Razer Chroma SDK Local Cert/OU=Chroma/O=Razer Inc issuer=/CN=Razer Chroma SDK Local Cert/OU=Chroma/O=Razer Inc +(I) [20:08:42.726] [000013504]: WindowsCertificates: Adding certificate; subject=/C=ZA/ST=Western Cape/L=Durbanville/O=Thawte/OU=Thawte Certification/CN=Thawte Timestamping CA issuer=/C=ZA/ST=Western Cape/L=Durbanville/O=Thawte/OU=Thawte Certification/CN=Thawte Timestamping CA +(I) [20:08:42.726] [000013504]: WindowsCertificates: Adding certificate; subject=/OU=Copyright (c) 1997 Microsoft Corp./OU=Microsoft Corporation/CN=Microsoft Root Authority issuer=/OU=Copyright (c) 1997 Microsoft Corp./OU=Microsoft Corporation/CN=Microsoft Root Authority +(I) [20:08:42.726] [000013504]: WindowsCertificates: Adding certificate; subject=/C=US/O=Symantec Corporation/CN=Symantec Enterprise Mobile Root for Microsoft issuer=/C=US/O=Symantec Corporation/CN=Symantec Enterprise Mobile Root for Microsoft +(I) [20:08:42.726] [000013504]: WindowsCertificates: Adding certificate; subject=/C=US/ST=Washington/L=Redmond/O=Microsoft Corporation/CN=Microsoft Root Certificate Authority 2011 issuer=/C=US/ST=Washington/L=Redmond/O=Microsoft Corporation/CN=Microsoft Root Certificate Authority 2011 +(I) [20:08:42.726] [000013504]: WindowsCertificates: Adding certificate; subject=/C=US/O=MSFT/CN=Microsoft Authenticode(tm) Root Authority issuer=/C=US/O=MSFT/CN=Microsoft Authenticode(tm) Root Authority +(I) [20:08:42.726] [000013504]: WindowsCertificates: Adding certificate; subject=/C=US/ST=Washington/L=Redmond/O=Microsoft Corporation/CN=Microsoft Root Certificate Authority 2010 issuer=/C=US/ST=Washington/L=Redmond/O=Microsoft Corporation/CN=Microsoft Root Certificate Authority 2010 +(I) [20:08:42.726] [000013504]: WindowsCertificates: Adding certificate; subject=/C=US/ST=Washington/L=Redmond/O=Microsoft Corporation/CN=Microsoft ECC TS Root Certificate Authority 2018 issuer=/C=US/ST=Washington/L=Redmond/O=Microsoft Corporation/CN=Microsoft ECC TS Root Certificate Authority 2018 +(I) [20:08:42.726] [000013504]: WindowsCertificates: Adding certificate; subject=/O=Microsoft Trust Network/OU=Microsoft Corporation/OU=Microsoft Time Stamping Service Root/OU=Copyright (c) 1997 Microsoft Corp. issuer=/O=Microsoft Trust Network/OU=Microsoft Corporation/OU=Microsoft Time Stamping Service Root/OU=Copyright (c) 1997 Microsoft Corp. +(I) [20:08:42.726] [000013504]: WindowsCertificates: Adding certificate; subject=/O=VeriSign Trust Network/OU=VeriSign, Inc./OU=VeriSign Time Stamping Service Root/OU=NO LIABILITY ACCEPTED, (c)97 VeriSign, Inc. issuer=/O=VeriSign Trust Network/OU=VeriSign, Inc./OU=VeriSign Time Stamping Service Root/OU=NO LIABILITY ACCEPTED, (c)97 VeriSign, Inc. +(I) [20:08:42.726] [000013504]: WindowsCertificates: Adding certificate; subject=/C=US/ST=Washington/L=Redmond/O=Microsoft Corporation/CN=Microsoft ECC Product Root Certificate Authority 2018 issuer=/C=US/ST=Washington/L=Redmond/O=Microsoft Corporation/CN=Microsoft ECC Product Root Certificate Authority 2018 +(I) [20:08:42.726] [000013504]: WindowsCertificates: Adding certificate; subject=/C=US/ST=Washington/L=Redmond/O=Microsoft Corporation/CN=Microsoft Time Stamp Root Certificate Authority 2014 issuer=/C=US/ST=Washington/L=Redmond/O=Microsoft Corporation/CN=Microsoft Time Stamp Root Certificate Authority 2014 +(I) [20:08:42.726] [000013504]: WindowsCertificates: Adding certificate; subject=/C=IT/L=Milan/O=Actalis S.p.A./03358520967/CN=Actalis Authentication Root CA issuer=/C=IT/L=Milan/O=Actalis S.p.A./03358520967/CN=Actalis Authentication Root CA +(I) [20:08:42.726] [000013504]: WindowsCertificates: Adding certificate; subject=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert Global Root G2 issuer=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert Global Root G2 +(I) [20:08:42.726] [000013504]: WindowsCertificates: Adding certificate; subject=/C=BM/O=QuoVadis Limited/OU=Root Certification Authority/CN=QuoVadis Root Certification Authority issuer=/C=BM/O=QuoVadis Limited/OU=Root Certification Authority/CN=QuoVadis Root Certification Authority +(I) [20:08:42.726] [000013504]: WindowsCertificates: Adding certificate; subject=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert Trusted Root G4 issuer=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert Trusted Root G4 +(I) [20:08:42.726] [000013504]: WindowsCertificates: Adding certificate; subject=/O=Digital Signature Trust Co./CN=DST Root CA X3 issuer=/O=Digital Signature Trust Co./CN=DST Root CA X3 +(I) [20:08:42.726] [000013504]: WindowsCertificates: Adding certificate; subject=/OU=GlobalSign Root CA - R3/O=GlobalSign/CN=GlobalSign issuer=/OU=GlobalSign Root CA - R3/O=GlobalSign/CN=GlobalSign +(I) [20:08:42.726] [000013504]: WindowsCertificates: Adding certificate; subject=/C=IE/O=Baltimore/OU=CyberTrust/CN=Baltimore CyberTrust Root issuer=/C=IE/O=Baltimore/OU=CyberTrust/CN=Baltimore CyberTrust Root +(I) [20:08:42.726] [000013504]: WindowsCertificates: Adding certificate; subject=/C=GB/ST=Greater Manchester/L=Salford/O=Comodo CA Limited/CN=AAA Certificate Services issuer=/C=GB/ST=Greater Manchester/L=Salford/O=Comodo CA Limited/CN=AAA Certificate Services +(I) [20:08:42.726] [000013504]: WindowsCertificates: Adding certificate; subject=/C=US/O=Internet Security Research Group/CN=ISRG Root X1 issuer=/C=US/O=Internet Security Research Group/CN=ISRG Root X1 +(I) [20:08:42.727] [000013504]: WindowsCertificates: Adding certificate; subject=/C=CN/O=WoSign CA Limited/CN=Certification Authority of WoSign issuer=/C=CN/O=WoSign CA Limited/CN=Certification Authority of WoSign +(I) [20:08:42.727] [000013504]: WindowsCertificates: Adding certificate; subject=/C=US/ST=Arizona/L=Scottsdale/O=Starfield Technologies, Inc./CN=Starfield Root Certificate Authority - G2 issuer=/C=US/ST=Arizona/L=Scottsdale/O=Starfield Technologies, Inc./CN=Starfield Root Certificate Authority - G2 +(I) [20:08:42.727] [000013504]: WindowsCertificates: Adding certificate; subject=/C=US/O=Entrust, Inc./OU=www.entrust.net/CPS is incorporated by reference/OU=(c) 2006 Entrust, Inc./CN=Entrust Root Certification Authority issuer=/C=US/O=Entrust, Inc./OU=www.entrust.net/CPS is incorporated by reference/OU=(c) 2006 Entrust, Inc./CN=Entrust Root Certification Authority +(I) [20:08:42.727] [000013504]: WindowsCertificates: Adding certificate; subject=/C=BE/O=GlobalSign nv-sa/OU=Root CA/CN=GlobalSign Root CA issuer=/C=BE/O=GlobalSign nv-sa/OU=Root CA/CN=GlobalSign Root CA +(I) [20:08:42.727] [000013504]: WindowsCertificates: Adding certificate; subject=/C=FR/O=Dhimyotis/CN=Certigna issuer=/C=FR/O=Dhimyotis/CN=Certigna +(I) [20:08:42.727] [000013504]: WindowsCertificates: Adding certificate; subject=/C=GB/ST=Greater Manchester/L=Salford/O=COMODO CA Limited/CN=COMODO RSA Certification Authority issuer=/C=GB/ST=Greater Manchester/L=Salford/O=COMODO CA Limited/CN=COMODO RSA Certification Authority +(I) [20:08:42.727] [000013504]: WindowsCertificates: Adding certificate; subject=/C=US/O=Starfield Technologies, Inc./OU=Starfield Class 2 Certification Authority issuer=/C=US/O=Starfield Technologies, Inc./OU=Starfield Class 2 Certification Authority +(I) [20:08:42.727] [000013504]: WindowsCertificates: Adding certificate; subject=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert Global Root CA issuer=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert Global Root CA +(I) [20:08:42.727] [000013504]: WindowsCertificates: Adding certificate; subject=/C=US/O=Entrust, Inc./OU=See www.entrust.net/legal-terms/OU=(c) 2009 Entrust, Inc. - for authorized use only/CN=Entrust Root Certification Authority - G2 issuer=/C=US/O=Entrust, Inc./OU=See www.entrust.net/legal-terms/OU=(c) 2009 Entrust, Inc. - for authorized use only/CN=Entrust Root Certification Authority - G2 +(I) [20:08:42.727] [000013504]: WindowsCertificates: Adding certificate; subject=/C=US/O=SecureTrust Corporation/CN=SecureTrust CA issuer=/C=US/O=SecureTrust Corporation/CN=SecureTrust CA +(I) [20:08:42.727] [000013504]: WindowsCertificates: Adding certificate; subject=/OU=GlobalSign Root CA - R6/O=GlobalSign/CN=GlobalSign issuer=/OU=GlobalSign Root CA - R6/O=GlobalSign/CN=GlobalSign +(I) [20:08:42.727] [000013504]: WindowsCertificates: Adding certificate; subject=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert Global Root G3 issuer=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert Global Root G3 +(I) [20:08:42.727] [000013504]: WindowsCertificates: Adding certificate; subject=/OU=GlobalSign Root CA - R2/O=GlobalSign/CN=GlobalSign issuer=/OU=GlobalSign Root CA - R2/O=GlobalSign/CN=GlobalSign +(I) [20:08:42.727] [000013504]: WindowsCertificates: Adding certificate; subject=/C=US/O=VeriSign, Inc./OU=Class 3 Public Primary Certification Authority issuer=/C=US/O=VeriSign, Inc./OU=Class 3 Public Primary Certification Authority +(I) [20:08:42.727] [000013504]: WindowsCertificates: Adding certificate; subject=/C=PL/O=Unizeto Sp. z o.o./CN=Certum CA issuer=/C=PL/O=Unizeto Sp. z o.o./CN=Certum CA +(I) [20:08:42.727] [000013504]: WindowsCertificates: Adding certificate; subject=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert High Assurance EV Root CA issuer=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert High Assurance EV Root CA +(I) [20:08:42.727] [000013504]: WindowsCertificates: Adding certificate; subject=/C=JP/O=SECOM Trust Systems CO.,LTD./OU=Security Communication RootCA2 issuer=/C=JP/O=SECOM Trust Systems CO.,LTD./OU=Security Communication RootCA2 +(I) [20:08:42.727] [000013504]: WindowsCertificates: Adding certificate; subject=/C=US/O=WFA Hotspot 2.0/CN=Hotspot 2.0 Trust Root CA - 03 issuer=/C=US/O=WFA Hotspot 2.0/CN=Hotspot 2.0 Trust Root CA - 03 +(I) [20:08:42.727] [000013504]: WindowsCertificates: Adding certificate; subject=/O=Entrust.net/OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.)/OU=(c) 1999 Entrust.net Limited/CN=Entrust.net Certification Authority (2048) issuer=/O=Entrust.net/OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.)/OU=(c) 1999 Entrust.net Limited/CN=Entrust.net Certification Authority (2048) +(I) [20:08:42.727] [000013504]: WindowsCertificates: Adding certificate; subject=/C=BE/O=GlobalSign nv-sa/CN=GlobalSign Code Signing Root R45 issuer=/C=BE/O=GlobalSign nv-sa/CN=GlobalSign Code Signing Root R45 +(I) [20:08:42.727] [000013504]: WindowsCertificates: Adding certificate; subject=/C=US/O=VeriSign, Inc./OU=VeriSign Trust Network/OU=(c) 2006 VeriSign, Inc. - For authorized use only/CN=VeriSign Class 3 Public Primary Certification Authority - G5 issuer=/C=US/O=VeriSign, Inc./OU=VeriSign Trust Network/OU=(c) 2006 VeriSign, Inc. - For authorized use only/CN=VeriSign Class 3 Public Primary Certification Authority - G5 +(I) [20:08:42.727] [000013504]: WindowsCertificates: Adding certificate; subject=/C=US/ST=Arizona/L=Scottsdale/O=GoDaddy.com, Inc./CN=Go Daddy Root Certificate Authority - G2 issuer=/C=US/ST=Arizona/L=Scottsdale/O=GoDaddy.com, Inc./CN=Go Daddy Root Certificate Authority - G2 +(I) [20:08:42.727] [000013504]: WindowsCertificates: Adding certificate; subject=/C=JP/O=SECOM Trust.net/OU=Security Communication RootCA1 issuer=/C=JP/O=SECOM Trust.net/OU=Security Communication RootCA1 +(I) [20:08:42.728] [000013504]: WindowsCertificates: Adding certificate; subject=/C=US/O=VeriSign, Inc./OU=VeriSign Trust Network/OU=(c) 2008 VeriSign, Inc. - For authorized use only/CN=VeriSign Universal Root Certification Authority issuer=/C=US/O=VeriSign, Inc./OU=VeriSign Trust Network/OU=(c) 2008 VeriSign, Inc. - For authorized use only/CN=VeriSign Universal Root Certification Authority +(I) [20:08:42.728] [000013504]: WindowsCertificates: Adding certificate; subject=/C=FR/O=Dhimyotis/OU=0002 48146308100036/CN=Certigna Root CA issuer=/C=FR/O=Dhimyotis/OU=0002 48146308100036/CN=Certigna Root CA +(I) [20:08:42.728] [000013504]: WindowsCertificates: Adding certificate; subject=/C=US/ST=New Jersey/L=Jersey City/O=The USERTRUST Network/CN=USERTrust RSA Certification Authority issuer=/C=US/ST=New Jersey/L=Jersey City/O=The USERTRUST Network/CN=USERTrust RSA Certification Authority +(I) [20:08:42.728] [000013504]: WindowsCertificates: Adding certificate; subject=/C=US/O=Google Trust Services LLC/CN=GTS Root R4 issuer=/C=US/O=Google Trust Services LLC/CN=GTS Root R4 +(I) [20:08:42.728] [000013504]: WindowsCertificates: Adding certificate; subject=/C=US/O=The Go Daddy Group, Inc./OU=Go Daddy Class 2 Certification Authority issuer=/C=US/O=The Go Daddy Group, Inc./OU=Go Daddy Class 2 Certification Authority +(I) [20:08:42.728] [000013504]: WindowsCertificates: Adding certificate; subject=/C=US/O=Entrust, Inc./OU=See www.entrust.net/legal-terms/OU=(c) 2012 Entrust, Inc. - for authorized use only/CN=Entrust Root Certification Authority - EC1 issuer=/C=US/O=Entrust, Inc./OU=See www.entrust.net/legal-terms/OU=(c) 2012 Entrust, Inc. - for authorized use only/CN=Entrust Root Certification Authority - EC1 +(I) [20:08:42.728] [000013504]: WindowsCertificates: Adding certificate; subject=/C=BM/O=QuoVadis Limited/CN=QuoVadis Root CA 2 G3 issuer=/C=BM/O=QuoVadis Limited/CN=QuoVadis Root CA 2 G3 +(I) [20:08:42.728] [000013504]: WindowsCertificates: Adding certificate; subject=/C=PL/O=Unizeto Technologies S.A./OU=Certum Certification Authority/CN=Certum Trusted Network CA issuer=/C=PL/O=Unizeto Technologies S.A./OU=Certum Certification Authority/CN=Certum Trusted Network CA +(I) [20:08:42.728] [000013504]: WindowsCertificates: Adding certificate; subject=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert Assured ID Root CA issuer=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert Assured ID Root CA +(I) [20:08:42.728] [000013504]: WindowsCertificates: Adding certificate; subject=/C=SE/O=AddTrust AB/OU=AddTrust External TTP Network/CN=AddTrust External CA Root issuer=/C=SE/O=AddTrust AB/OU=AddTrust External TTP Network/CN=AddTrust External CA Root +(I) [20:08:42.728] [000013504]: SystemCertsWin: 56 certificates loaded +(I) [20:08:42.737] [000013504]: AutomatchInternal: Instantiating +(I) [20:08:42.740] [000013504]: NetworkLoadCallback not able to open file CloudGetFileURLCache-coh3-coh3.dat +(I) [20:08:42.740] [000013504]: NetworkLoadCallback not able to open file CloudFileMetadataCache-coh3-coh3.dat +(I) [20:08:42.740] [000013504]: WindowsCertificates: Adding certificate; subject=/C=CA/ST=British Columbia/L=Vancouver/O=Relic Entertainment/CN=RelicLink Root CA issuer=/C=CA/ST=British Columbia/L=Vancouver/O=Relic Entertainment/CN=RelicLink Root CA +(I) [20:08:42.741] [000013504]: Loading step: [Telemetry] +(I) [20:08:42.741] [000013504]: Loading step: [Lua Libraries] +(I) [20:08:42.741] [000013504]: Loading step: [Lua Tools] +(I) [20:08:42.741] [000013504]: Loading step: [System Tests] +(I) [20:08:42.743] [000013504]: Enumerating Graphics Adapters +(I) [20:08:42.744] [000013504]: Choosing first adapter +(I) [20:08:42.744] [000013504]: Adapter: NVIDIA GeForce RTX 3090 Ti video dedicated: 25508708352 shared: 17137915904 system dedicated: 0 +(I) [20:08:42.744] [000013504]: Checking against Adapter: Microsoft Basic Render Driver video dedicated: 0 shared: 17137915904 system dedicated: 0 +(I) [20:08:42.944] [000013504]: Adapter ignored, we already have a good dedicated, and this one doesn't have better dedicated memory +(I) [20:08:42.944] [000013504]: Chosen adapter: NVIDIA GeForce RTX 3090 Ti video dedicated: 25508708352 shared: 17137915904 system dedicated: 0 +(I) [20:08:42.945] [000013504]: Loading step: [Command DB] +(I) [20:08:42.964] [000013504]: Loading step: [Game Command DB] +(I) [20:08:42.964] [000013504]: Loading step: [InitComponentFactory] +(I) [20:08:42.964] [000013504]: Loading step: [Inventory] +(I) [20:08:42.964] [000013504]: Loading step: [AI subsystem] +(I) [20:08:42.964] [000013504]: Loading step: [Game Hooks] +(I) [20:08:42.964] [000013504]: RPC -- Initializing RpcFramework +(I) [20:08:42.964] [000013504]: Loading step: [Game Modules Init] +(I) [20:08:42.964] [000013504]: Loading step: [App Init Complete] +(I) [20:08:42.964] [000013504]: Loading step: [dbImGui] +(I) [20:08:42.964] [000013504]: Loading step: [User Data Shutdown] +(I) [20:08:42.964] [000016652]: Registered essence thread: [Simulation_Thread] usesRcssWorkerThreads: [true] +(I) [20:08:42.965] [000019412]: Registered essence thread: [Render_Thread] usesRcssWorkerThreads: [true] +(I) [20:08:43.143] [000005436]: Enumerating Graphics Adapters +(I) [20:08:43.144] [000005436]: Choosing first adapter +(I) [20:08:43.144] [000005436]: Adapter: NVIDIA GeForce RTX 3090 Ti video dedicated: 25508708352 shared: 17137915904 system dedicated: 0 +(I) [20:08:43.144] [000005436]: Checking against Adapter: Microsoft Basic Render Driver video dedicated: 0 shared: 17137915904 system dedicated: 0 +(I) [20:08:43.313] [000005436]: Adapter ignored, we already have a good dedicated, and this one doesn't have better dedicated memory +(I) [20:08:43.313] [000005436]: Chosen adapter: NVIDIA GeForce RTX 3090 Ti video dedicated: 25508708352 shared: 17137915904 system dedicated: 0 +(I) [20:08:43.478] [000005436]: -------- GPU and Output INFO -------- +(I) [20:08:43.479] [000005436]: NVIDIA GeForce RTX 3090 Ti -- 24327MB dedicated video memory, 0MB dedicated system memory and 16343MB shared system memory available. +(I) [20:08:43.479] [000005436]: Primary Output Device is \\.\DISPLAY1, Resolution is 2560x1440 +(I) [20:08:43.479] [000005436]: Microsoft Basic Render Driver -- 0MB dedicated video memory, 0MB dedicated system memory and 16343MB shared system memory available. +(I) [20:08:43.591] [000013504]: Requesting max allowed 11907 MB of video memory. OS-assigned budget = 23559 MB. Current usage = 300 MB. +(I) [20:08:43.693] [000013504]: Loading step: [Render Anim] +(I) [20:08:43.693] [000013504]: Loading step: [Alias] +(I) [20:08:43.694] [000013504]: Loading step: [Hotswapping] +(I) [20:08:43.694] [000013504]: Loading step: [ITextureUtil] +(I) [20:08:43.694] [000013504]: Loading step: [TextureManager] +(I) [20:08:43.694] [000013504]: Loading step: [Loaders] +(I) [20:08:43.694] [000013504]: Loading step: [ActionCommandFunction] +(I) [20:08:43.694] [000013504]: Loading step: [TeamColourCommandFunction] +(I) [20:08:43.694] [000013504]: Loading step: [SetShaderVariableCommandFunction] +(I) [20:08:43.694] [000013504]: Loading step: [IntersectUtil] +(I) [20:08:43.694] [000013504]: Loading step: [ShadowManager] +(I) [20:08:43.694] [000013504]: Loading step: [Debug Render] +(I) [20:08:43.694] [000013504]: Loading step: [Autodetect Settings] +(I) [20:08:43.694] [000013504]: -------- Display Adapter Driver Information -------- +(I) [20:08:43.694] [000013504]: Vendor: NVIDIA (0x10de) +(I) [20:08:43.694] [000013504]: Installed Driver Version: r530_99 (53129) +(I) [20:08:43.694] [000013504]: Required Driver Version: 512.15 (51215) +(I) [20:08:43.694] [000013504]: ---------------------------------------------------- +(I) [20:08:44.284] [000019412]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [20:08:45.027] [000013504]: Results of 8 GPU performance test frames: Median = 13.736959ms, average = 14.809216ms, min = 13.175808ms, max = 17.010689ms +(I) [20:08:45.028] [000013504]: Detected: CPU [Max][Score: 816.26][RAM: 32], GPU [Max][Score: 296.00][VRAM: 24] +(I) [20:08:45.028] [000013504]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\soundcommon.sga 13190 B [ID:70641d3636c52218e9ecf2aba8a04c76] [Ver:024c7383dfa558db11191a518b810ebc] [Sig:8818703569101034976] +(I) [20:08:45.029] [000013504]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\soundspeechallies.sga 225860918 B [ID:a3d79f90e4bdec5cb47a67abda5a2793] [Ver:a7ac9a31acfb6df51f35168fc1293b8c] [Sig:10856766631629344128] +(I) [20:08:45.036] [000013504]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\soundspeechalliesuk.sga 1641141840 B [ID:ed506ab18d21f2ffe3194169ba1d9a3c] [Ver:d96a01231fca3bf02b892cd8bf50fa81] [Sig:2818665100462973260] +(I) [20:08:45.048] [000013504]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\soundspeechalliesus.sga 983223675 B [ID:7a1866d3e9d2d1e3cd91cf5ac53deaa9] [Ver:e604e0db28ec7add24ba161d09c01e7b] [Sig:4611963199648881550] +(I) [20:08:45.056] [000013504]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\soundspeechaxis.sga 407160050 B [ID:44d5e1d8695f153cc8d01842ce4013df] [Ver:2c65174f70469ddb1349fb58372f8976] [Sig:13735343381939219584] +(I) [20:08:45.062] [000013504]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\soundspeechaxisdak.sga 955699799 B [ID:7c9beb5bbe4c6377f9af4992656de107] [Ver:936c46f43705f934d0248d1fdb0b859b] [Sig:8745198740489113604] +(I) [20:08:45.070] [000013504]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\soundspeechaxiswehr.sga 1153528833 B [ID:86c53ff39ed7cba5c213d242f3da1e68] [Ver:2519390378b9579428c7714c52702c3f] [Sig:1958587579265905020] +(I) [20:08:45.077] [000013504]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\soundspeechcampaign.sga 1031570801 B [ID:622fb949ed9a0aec199fafdfb5e30bb7] [Ver:060267ad4b08a0b5c0ad04bc1bf43c42] [Sig:10229608255538247120] +(I) [20:08:45.080] [000013504]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\soundhigh.sga 894533141 B [ID:95a11ec6fbb00f11e9eef24ff8ae22e5] [Ver:8e0976d12090a5e167e316f98d812c18] [Sig:17332340039860731440] +(I) [20:08:45.080] [000013504]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\engine\archives\arthigh.sga 6678 B [ID:e8f87e4ac202807565d2b4980453804d] [Ver:2687154863f6a8aae64a123d657f5735] [Sig:6704931815395175266] +(I) [20:08:45.081] [000013504]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\arthigh.sga 472 B [ID:8a629ab005ea51b2b5d08365bdcfe69c] [Ver:cd4ca20af4cc08abcb623f9c2bf1812a] [Sig:9610569117138263877] +(I) [20:08:45.081] [000013504]: Loading step: [Sound] +(I) [20:08:46.031] [000013504]: Loading step: [Fonts] +(I) [20:08:46.032] [000013504]: Loading step: [Statgraph] +(I) [20:08:46.032] [000013504]: Loading step: [Debug Console] +(I) [20:08:46.033] [000013504]: Loading step: [Movie Manager] +(I) [20:08:46.033] [000013504]: Loading step: [Flush Inventory] +(I) [20:08:46.033] [000013504]: Loading step: [Purge BackgroundLoader] +(I) [20:08:46.033] [000013504]: Loading step: [Unload inventory] +(I) [20:08:46.033] [000013504]: Loading step: [Cancel Pending Soundbank Loads] +(I) [20:08:46.122] [000013504]: Loading step: [Init Screen Background] +(I) [20:08:46.122] [000013504]: Loading step: [Cursor] +(I) [20:08:46.184] [000013504]: Loading step: [Presentation App] +(I) [20:08:46.184] [000013504]: Loading step: [Presentation Static App] +(I) [20:08:46.184] [000013504]: Loading step: [DestinationFormationManager] +(I) [20:08:46.184] [000013504]: Loading step: [Campaign Manager] +(I) [20:08:46.184] [000013504]: Loading step: [Mods] +(I) [20:08:46.185] [000013504]: ARC -- C:\Users\Cutil\Documents\My Games\Company of Heroes 3\mods\extension\subscriptions\2937361544\ccm.sga 391256 B [ID:385d981096ba4ece90408281db65174e] [Ver:bb33efac3af3265f9b8d6b3924dc20f7] [Sig:0] +(I) [20:08:46.186] [000013504]: ARC -- C:\Users\Cutil\Documents\My Games\Company of Heroes 3\mods\extension\subscriptions\2940153801\2_Crossroads.sga 4218946 B [ID:098a5aad6c714469a3a26c3b52f30922] [Ver:e5186367b15f8b43a87817b5a307c927] [Sig:0] +(I) [20:08:46.186] [000013504]: Failed to load lua file 'userdata:mods_meta_data.lua' +(I) [20:08:46.233] [000013504]: GAME -- (WorldManager) Cannot find original scenario "po_valley_4p" referenced from data:scenarios\missions\skirmish\po_valley_sp\po_valley_sp.scenref +(I) [20:08:46.233] [000013504]: GAME -- (WorldManager) Could not load scenario reference file data:scenarios\missions\skirmish\po_valley_sp\po_valley_sp.scenref. Please check syntax. +(I) [20:08:46.239] [000013504]: Loading step: [Item Manager] +(I) [20:08:46.239] [000013504]: Loading step: [Loadout Manager] +(I) [20:08:46.239] [000013504]: Loading step: [Chat Manager] +(I) [20:08:46.241] [000013504]: Loading step: [Squad Command Processor Types] +(I) [20:08:46.241] [000013504]: Loading step: [Squad Command Processor Types from Games] +(I) [20:08:46.241] [000013504]: Loading step: [IEngineInitializable] +(I) [20:08:46.247] [000013504]: default binding was not found for command [box_select] in [TEST]. The command could be deleted. Ignored +(I) [20:08:46.249] [000013504]: Invalid group developer found in profile Profil ZQSD par défaut. Ignoring +(I) [20:08:46.250] [000013504]: CRC & Version Info : exe 0x00002974:data 0x273f815d:flags 0 +(I) [20:08:46.251] [000013504]: GameApp::SetState : new (Unloaded) old (Uninitialized) +(I) [20:08:48.514] [000013504]: GameApp::SetState : new (FrontEnd) old (Unloaded) +(I) [20:08:48.514] [000013504]: GameApp::SetTargetState : new (Uninitialized) old (FrontEnd) +(I) [20:08:48.516] [000013504]: FILESYSTEM -- filepath failure, missing alias 'Save:Campaign\*.rlt' +(I) [20:08:48.516] [000013504]: FILESYSTEM -- filepath failure, missing alias 'Save:AutoSave\Campaign\*.rlt' +(I) [20:08:48.516] [000013504]: FILESYSTEM -- filepath failure, missing alias 'Save:Operations\*.sav' +(I) [20:08:48.516] [000013504]: FILESYSTEM -- filepath failure, missing alias 'Save:Skirmish\*.sav' +(I) [20:08:48.527] [000019412]: RENDERING - Starting compositor fullscreen transition [1] +(I) [20:08:48.527] [000019412]: RENDERING - Setting Fullscreen On +(I) [20:08:48.616] [000019412]: RENDERING - state Size [2560 x 1440], fullscreen size[2560 x 1440] +(I) [20:08:48.618] [000019412]: RENDERING - Finished compositor fullscreen transition [1] +(I) [20:08:48.618] [000019412]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [20:08:48.675] [000019412]: RENDERING - new resize requested [2560, 1440] reason [WindowSizeEvent] +(I) [20:08:48.675] [000019412]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [20:08:48.677] [000019412]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [20:08:48.677] [000019412]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [20:08:48.680] [000013504]: Requesting ticket +(I) [20:08:48.919] [000013504]: OnRequest app ticket returned N +(I) [20:08:48.919] [000013504]: SteamAuth received ticket at t=41254162 +(I) [20:08:49.571] [000013504]: Found 1 profiles for account /steam/76561198005864560 +(I) [20:08:49.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:08:49.571] [000013504]: Found profile: /steam/76561198005864560 +(I) [20:08:49.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:08:49.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:08:49.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:08:49.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:08:49.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:08:49.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:08:49.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:08:49.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:08:49.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:08:49.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:08:49.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:08:49.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:08:49.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:08:49.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:08:49.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:08:49.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:08:49.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:08:49.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:08:49.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:08:49.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:08:49.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:08:49.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:08:49.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:08:49.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:08:49.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:08:49.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:08:49.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:08:49.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:08:49.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:08:49.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:08:49.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:08:49.574] [000013504]: Login attempt: C00T01R00X-01 52656C69008C +(I) [20:08:49.648] [000013504]: System was measured to be capable of copying [16630] MB/sec. +(I) [20:08:50.178] [000023384]: WorldwideLoginService::WebSocketConnection::OnConnect +(I) [20:08:52.789] [000013504]: Movie Manager -- No movies with locale [fr] exist on disk. Switching to fallback locale [en]. +(I) [20:08:57.039] [000013504]: GAME -- ValidateScenarioDesc(): Gamesave app version mismatch (data:scenarios\missions\skirmish\rural_1_sp\rural_1_sp ver binary version stamp or crc/data crc:8849/-1813185163) required:10612/658473309 +(I) [20:08:57.712] [000013504]: GAME -- ValidateScenarioDesc(): Gamesave app version mismatch (data:scenarios\missions\africa\archetype\destroy\desert_route_tank_battle ver binary version stamp or crc/data crc:8369/-2068725181) required:10612/658473309 +(I) [20:08:58.383] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:08:58.397] [000013504]: GetPartyStatsByID found 1 teams for user ID 16432 +(I) [20:08:58.963] [000013504]: starting online hosting +(I) [20:09:05.033] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:09:05.033] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:09:05.033] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:09:05.033] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:09:05.033] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:09:05.033] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:09:05.033] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:09:05.033] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:09:05.033] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:09:05.033] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:09:05.033] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:09:05.033] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:09:05.033] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:09:05.033] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:09:05.033] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:09:05.033] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:09:05.033] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:09:05.033] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:09:05.033] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:09:05.033] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:09:05.033] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:09:05.676] [000013504]: OnlineHostAsync success +(I) [20:09:05.676] [000013504]: Created Matchinfo for sessionID 5805250 +(I) [20:09:05.676] [000013504]: OnJoinAdvertisementSuccess - joined online match, server leave notification required +(I) [20:09:05.676] [000013504]: starting local hosting +(I) [20:09:05.676] [000013504]: ValidateCustomData: called with 4964 bytes of custom data +(I) [20:09:05.676] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:09:05.676] [000013504]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [20:09:05.676] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:09:05.684] [000013504]: Sending matchinfo change #2 +(I) [20:09:05.692] [000013504]: HostAsync - got operation info 0:SessionOperationInfo::SUCCESS +(I) [20:09:05.698] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=1/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=1/0, Pdel=0/0, drop=0/0, data=1/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=3/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=3/0, lb_p=0/0, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=1/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:09:05.698] [000013504]: hosting - Session is connected +(E) [20:09:05.790] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [20:09:05.923] [000013504]: CreateSteamSessionAsync::Process: Successfully created lobby; lobbyId=109775243162484402 +(I) [20:09:07.421] [000023384]: Read bytes [0,"PlatformSessionUpdateMessage",16432,[5805250,"0",109775243162484402,""]] +(I) [20:09:07.421] [000013504]: Sending matchinfo change #3 +(I) [20:09:07.457] [000013504]: HostAsync - completed with HostResult = 0 +(I) [20:09:07.457] [000013504]: Party::SetHostJoinResult - 0 +(I) [20:09:07.457] [000013504]: Party::SetStatus - S_CONFIGURING +(I) [20:09:07.457] [000013504]: WorldwideAutomatchService::OnHostComplete - automatcher is no longer active - stopPollPending 0 automatchPollID 18446744073709551615 +(E) [20:09:07.538] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [20:09:07.552] [000013504]: Sending matchinfo change #4 +(E) [20:09:07.671] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [20:09:08.455] [000013504]: Sending matchinfo change #5 +(E) [20:09:08.547] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [20:09:09.010] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=aa09bf1e7176309dec0e9a31b04923157c07c9aad3cf1919aade9e299e3e78bf +(I) [20:09:09.416] [000013504]: Sending matchinfo change #6 +(E) [20:09:09.543] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [20:09:09.789] [000013504]: Sending matchinfo change #7 +(E) [20:09:09.929] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [20:09:11.322] [000013504]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [20:09:11.329] [000013504]: Sending matchinfo change #9 +(E) [20:09:11.421] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [20:09:11.498] [000013504]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [20:09:11.498] [000013504]: Sending matchinfo change #10 +(E) [20:09:11.546] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [20:09:12.025] [000019412]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [None] +(I) [20:09:12.033] [000019412]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [None] +(I) [20:09:12.033] [000019412]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [20:09:22.004] [000013504]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [20:09:22.193] [000013504]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [20:09:25.848] [000019412]: RENDERING - new resize requested [2560, 1440] reason [WindowSizeEvent] +(I) [20:09:25.848] [000019412]: RENDERING - Starting compositor fullscreen transition [1] +(I) [20:09:25.848] [000019412]: RENDERING - Setting Fullscreen On +(I) [20:09:25.943] [000019412]: RENDERING - state Size [2560 x 1440], fullscreen size[2560 x 1440] +(I) [20:09:25.945] [000019412]: RENDERING - Finished compositor fullscreen transition [1] +(I) [20:09:25.945] [000019412]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [20:09:25.948] [000019412]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [20:09:25.948] [000019412]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [20:09:26.007] [000019412]: RENDERING - new resize requested [2578, 1487] reason [WindowSizeEvent] +(I) [20:09:26.007] [000019412]: RENDERING - resize request clobbering old request [2578, 1487] reason [WindowSizeEvent] +(I) [20:09:26.007] [000019412]: RENDERING - new resize requested [2560, 1440] reason [WindowSizeEvent] +(I) [20:09:26.007] [000019412]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [20:09:26.012] [000019412]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [20:09:26.012] [000019412]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [20:09:29.008] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f6ebe5a254de711ea31c57f24e7d47d07b6b7e627e82320adac955604690e3e6 +(I) [20:09:33.003] [000013504]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [20:09:33.179] [000013504]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [20:09:44.003] [000013504]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [20:09:44.198] [000013504]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [20:09:53.007] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=673f908b0a2f136a68cdb6ec1d3b1b0be5351c2858929e19e311eb42e4c4023e +(I) [20:09:55.002] [000013504]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [20:09:55.184] [000013504]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [20:10:06.000] [000013504]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [20:10:06.001] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/2, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/2, Pdel=0/0, drop=0/0, data=7/16, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=7/20, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=7/9, lb_p=22/4, lb_c=0/1, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:10:06.196] [000013504]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [20:10:07.990] [000023384]: Read bytes [0,"Automatch2GameMessage",16432,["80459","5805364","cliff_crossing_2p","203852","1","2","2","1","authtoken","3.120.167.251",27004,27114,27214,[[5805364,16432,45,11893,203852,1,"/10.0.70.19"],[5805364,80459,62,70653,137123,0,"/10.0.70.34"]],""]] +(I) [20:10:07.996] [000013504]: AutomatchInternal - OnJoinAutomatch - Server told us join matchID=5805364, hostProfileID=80459 +(I) [20:10:07.996] [000013504]: AutomatchInternal - join request validated, attempting +(I) [20:10:08.698] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:10:08.735] [000013504]: JoinAsync: Starting AsyncJob... +(I) [20:10:08.968] [000013504]: OnlineJoinAsync success +(I) [20:10:08.968] [000013504]: Created Matchinfo for sessionID 5805364 +(I) [20:10:08.968] [000013504]: OnJoinAdvertisementSuccess - joined online match, server leave notification required +(I) [20:10:09.207] [000013504]: ValidateCustomData: called with 2214 bytes of custom data +(I) [20:10:09.207] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:10:09.207] [000013504]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [20:10:09.207] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:10:09.207] [000013504]: ValidateCustomData: called with 2882 bytes of custom data +(I) [20:10:09.207] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:10:09.207] [000013504]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [20:10:09.207] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:10:09.214] [000013504]: Accepted matchInfo updated 41 from host +(I) [20:10:09.214] [000013504]: JoinAsync - got operation info 0:SessionOperationInfo::SUCCESS +(I) [20:10:09.224] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=1/1, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/4, Pdel=0/0, drop=0/0, data=1/2, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=2/7, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=2/3, lb_p=0/0, lb_c=0/1, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(E) [20:10:09.468] [000013504]: JoinSteamSessionAsync::Process: Steam join lobby completed; failed=0 failureReason=-1 +(E) [20:10:09.468] [000013504]: JoinSteamSessionAsync::OnLobbyEnter: Error joining lobby; lobbyId=0 ioError=1 response=0 +(E) [20:10:09.482] [000013504]: JoinAsync: failed to join platform session. Continuing anyway +(I) [20:10:09.482] [000013504]: JoinAsync - completed with JoinResult = 0 +(I) [20:10:09.482] [000013504]: JoinAsync - completed with JoinResult = 0:AdvertisementJoinEvent::R_Success +(I) [20:10:09.482] [000013504]: Creating an RLink chat channel (not a multiplayer game). +(I) [20:10:09.482] [000013504]: WorldwideAutomatch2Service::OnJoinComplete - Completed Join with joinResult=0 matchID=5805364 +(I) [20:10:09.482] [000013504]: JoinAsync: AsyncJob Complete... +(I) [20:10:09.482] [000013504]: Sending matchinfo change #11 +(E) [20:10:09.567] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [20:10:09.679] [000013504]: WorldwideAutomatch2Service::Process - Got into game successfully, 2 players present, got correct slot settings - setting metadata +(I) [20:10:09.833] [000013504]: Accepted matchInfo updated 42 from host +(I) [20:10:13.001] [000013504]: WorldwideAutomatch2Service::Process - Waiting, only 0 players ready +(I) [20:10:15.011] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f991d9b80acdab617babb87abf395f3f44a7e7dc070180fb8475756a872bbe54 +(I) [20:10:17.005] [000013504]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [20:10:17.005] [000013504]: WorldwideAutomatch2Service::Process - Waiting, only 0 players ready +(I) [20:10:17.187] [000013504]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [20:10:19.009] [000013504]: Party::SetStatus - S_PLAYING +(I) [20:10:19.024] [000013504]: Sending matchinfo change #12 +(E) [20:10:19.069] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [20:10:20.716] [000013504]: Accepted matchInfo updated 43 from host +(I) [20:10:21.003] [000013504]: WorldwideAutomatch2Service::Process - Got into game successfully, 2 players present, got correct slot settings - readying up +(I) [20:10:21.003] [000013504]: WorldwidePartyService::RequestReady: Sending PlayerReadyRequest; profileID=16432 isReady=1 isSuccessful=1 +(I) [20:10:21.222] [000013504]: Accepted matchInfo updated 44 from host +(I) [20:10:22.338] [000013504]: Accepted matchInfo updated 45 from host +(I) [20:10:22.338] [000013504]: WorldwideAutomatchService::OnStartComplete - detected successful game start +(I) [20:10:22.338] [000013504]: Match Started - [80459 /steam/76561198058198116], slot = 0, ranking = 62 +(I) [20:10:22.338] [000013504]: Match Started - [16432 /steam/76561198005864560], slot = 1, ranking = 45 +(I) [20:10:22.737] [000023384]: Read bytes [0,"MatchStartMessage",16432,[[[16432,["2068341","2068340"]],[80459,[]]],[["16432","203852"],["80459","137123"]],1680459022,[["16432",[[1543329,20,452979,16432,1,0,"{}",1677175591,2,-1,19,2147483647],[1543351,1,453412,16432,1,0,"{}",1677175591,4,-1,3,2147483647],[1543318,8,451866,16432,1,0,"{}",1677175591,6,-1,19,2147483647],[1543184,21,454503,16432,1,0,"{\"att\":{\"is_new\":{\"val\":\"0\"}},\"epos\":\"20\",\"eslot\":\"20\",\"dlc\":1}",1677175591,1543329,-1,19,-1],[1543327,21,453178,16432,1,0,"{\"epos\":\"0\",\"eslot\":\"0\"}",1677175591,1543329,-1,19,2147483647],[1543328,21,453177,16432,1,0,"{\"epos\":\"1\",\"eslot\":\"1\"}",1677175591,1543329,-1,19,2147483647],[1543330,21,453176,16432,1,0,"{\"epos\":\"2\",\"eslot\":\"2\"}",1677175591,1543329,-1,19,2147483647],[1543413,21,454106,16432,1,0,"{\"epos\":\"18\",\"eslot\":\"18\"}",1677175591,1543329,-1,19,2147483647],[1543414,21,454107,16432,1,0,"{\"epos\":\"19\",\"eslot\":\"19\"}",1677175591,1543329,-1,19,2147483647],[1543416,21,454114,16432,1,0,"{\"epos\":\"6\",\"eslot\":\"6\"}",1677175591,1543329,-1,19,2147483647],[1543417,21,454112,16432,1,0,"{\"epos\":\"7\",\"eslot\":\"7\"}",1677175591,1543329,-1,19,2147483647],[1543418,21,454105,16432,1,0,"{\"epos\":\"4\",\"eslot\":\"4\"}",1677175591,1543329,-1,19,2147483647],[1543419,21,454111,16432,1,0,"{\"epos\":\"8\",\"eslot\":\"8\"}",1677175591,1543329,-1,19,2147483647],[1543420,21,454113,16432,1,0,"{\"epos\":\"9\",\"eslot\":\"9\"}",1677175591,1543329,-1,19,2147483647],[1543421,21,454109,16432,1,0,"{\"epos\":\"5\",\"eslot\":\"5\"}",1677175591,1543329,-1,19,2147483647],[1543422,21,454110,16432,1,0,"{\"epos\":\"10\",\"eslot\":\"10\"}",1677175591,1543329,-1,19,2147483647],[1543423,21,454125,16432,1,0,"{\"epos\":\"11\",\"eslot\":\"11\"}",1677175591,1543329,-1,19,2147483647],[1543424,21,454123,16432,1,0,"{\"epos\":\"12\",\"eslot\":\"12\"}",1677175591,1543329,-1,19,2147483647],[1543425,21,454116,16432,1,0,"{\"epos\":\"13\",\"eslot\":\"13\"}",1677175591,1543329,-1,19,2147483647],[1543426,21,454121,16432,1,0,"{\"epos\":\"14\",\"eslot\":\"14\"}",1677175591,1543329,-1,19,2147483647],[1543427,21,454119,16432,1,0,"{\"epos\":\"3\",\"eslot\":\"3\"}",1677175591,1543329,-1,19,2147483647],[1543428,21,454115,16432,1,0,"{\"epos\":\"15\",\"eslot\":\"15\"}",1677175591,1543329,-1,19,2147483647],[1543429,21,454122,16432,1,0,"{\"epos\":\"16\",\"eslot\":\"16\"}",1677175591,1543329,-1,19,2147483647],[1543430,21,454120,16432,1,0,"{\"epos\":\"17\",\"eslot\":\"17\"}",1677175591,1543329,-1,19,2147483647],[1543187,1,454524,16432,1,0,"{\"epos\":\"0\",\"eslot\":\"0\",\"dlc\":1}",1677175591,1543351,-1,19,-1],[1543191,1,454522,16432,1,0,"{\"epos\":\"10\",\"eslot\":\"10\",\"dlc\":1}",1677175591,1543351,-1,19,-1]]],["80459",[[9037838,44,451845,80459,1,0,"{}",1677186642,2,-1,19,2147483647],[9037873,1,453412,80459,1,0,"{}",1677186642,4,-1,3,2147483647],[9037840,42,451866,80459,1,0,"{}",1677186642,6,-1,19,2147483647],[9037843,45,453182,80459,1,0,"{\"epos\":\"1\",\"eslot\":\"1\"}",1677186642,9037838,-1,19,2147483647],[9037846,45,453179,80459,1,0,"{\"epos\":\"0\",\"eslot\":\"0\"}",1677186642,9037838,-1,19,2147483647],[9037847,45,453181,80459,1,0,"{\"epos\":\"2\",\"eslot\":\"2\"}",1677186642,9037838,-1,19,2147483647],[9037894,45,454103,80459,1,0,"{\"epos\":\"21\",\"eslot\":\"21\"}",1677186642,9037838,-1,19,2147483647],[9037895,45,454102,80459,1,0,"{\"epos\":\"22\",\"eslot\":\"22\"}",1677186642,9037838,-1,19,2147483647],[9037896,45,454101,80459,1,0,"{\"epos\":\"23\",\"eslot\":\"23\"}",1677186642,9037838,-1,19,2147483647],[9037897,45,454089,80459,1,0,"{\"epos\":\"14\",\"eslot\":\"14\"}",1677186642,9037838,-1,19,2147483647],[9037898,45,454088,80459,1,0,"{\"epos\":\"15\",\"eslot\":\"15\"}",1677186642,9037838,-1,19,2147483647],[9037899,45,454082,80459,1,0,"{\"epos\":\"8\",\"eslot\":\"8\"}",1677186642,9037838,-1,19,2147483647],[9037900,45,454086,80459,1,0,"{\"epos\":\"16\",\"eslot\":\"16\"}",1677186642,9037838,-1,19,2147483647],[9037901,45,454085,80459,1,0,"{\"epos\":\"9\",\"eslot\":\"9\"}",1677186642,9037838,-1,19,2147483647],[9037902, +(I) [20:10:22.739] [000013504]: WorldwideAutomatchService::OnStartComplete - detected successful game start +(I) [20:10:22.739] [000013504]: WorldwideAutomatchService::OnStartComplete - forcing pollcomplete event +(I) [20:10:22.739] [000013504]: GameApp::SetTargetState : new (Game) old (Uninitialized) +(I) [20:10:22.747] [000013504]: MOD - Setting player [0] race to: [137123] +(I) [20:10:22.748] [000013504]: MOD - Setting player [1] race to: [203852] +(I) [20:10:22.749] [000013504]: ModDllSetup: SetStatsGameUID=23221457 +(I) [20:10:22.749] [000013504]: GAME -- Scenario: data:scenarios\multiplayer\cliff_crossing_2p\cliff_crossing_2p +(I) [20:10:22.749] [000013504]: GAME -- Win Condition Qualified Name: 00000000000000000000000000000000:3318379781 +(I) [20:10:22.749] [000013504]: GAME -- Win Condition Name: VictoryPoint +(I) [20:10:22.749] [000013504]: GAME -- Human Player: 0 Equuz 80459 0 germans +(I) [20:10:22.749] [000013504]: GAME -- Human Player: 1 UMirinBrah? 16432 1 british_africa +(I) [20:10:22.749] [000013504]: GameApp::SetState : new (LoadingGame) old (FrontEnd) +(I) [20:10:22.925] [000013504]: WorldwideAutomatch2Service::OnPollComplete - I am peer 2, ihost:0, islocal:1 +(I) [20:10:22.925] [000013504]: WorldwideAutomatch2Service::OnPollComplete - All players in session and ready, automatch process complete +(I) [20:10:23.569] [000013504]: GameObj::StartGameObj - info, network session GUID set to [23221457]. +(I) [20:10:23.570] [000000704]: Loading step: [OnBeginLoad] +(I) [20:10:23.570] [000000704]: Loading step: [Assign Players] +(I) [20:10:23.570] [000000704]: Loading step: [FXReflection] +(I) [20:10:23.570] [000000704]: Loading step: [FXDataContext] +(I) [20:10:23.570] [000000704]: Loading step: [FX Texture Pack] +(I) [20:10:23.571] [000000704]: Loading step: [Run Havok Garbage Collection] +(I) [20:10:23.571] [000000704]: Loading step: [Flush Inventory On Application Exit] +(I) [20:10:23.571] [000000704]: Loading step: [Default World] +(I) [20:10:23.578] [000000704]: Loading step: [FX Command Function] +(I) [20:10:23.578] [000000704]: Loading step: [AnimatorCommandFunction] +(I) [20:10:23.578] [000000704]: Loading step: [MemShrink] +(I) [20:10:23.578] [000000704]: Loading step: [Sync Checking] +(I) [20:10:23.578] [000000704]: Loading step: [Tuning Variant] +(I) [20:10:23.578] [000000704]: Using scenario tuning variant [default] +(I) [20:10:23.578] [000000704]: Loading step: [Mod Packs] +(I) [20:10:23.578] [000000704]: Loading step: [SimVis System] +(I) [20:10:23.578] [000000704]: Loading step: [DefaultWorld] +(I) [20:10:23.578] [000000704]: Loading step: [Visual Physics ME] +(I) [20:10:23.578] [000000704]: Loading step: [Deferred Decal Manager] +(I) [20:10:23.578] [000000704]: Loading step: [FogVolumeManager] +(I) [20:10:23.578] [000000704]: Loading step: [Vehicle Physics Function] +(I) [20:10:23.578] [000000704]: Loading step: [Unit Occlusion Function] +(I) [20:10:23.578] [000000704]: Loading step: [Splat Function] +(I) [20:10:23.578] [000000704]: Loading step: [Grass Function] +(I) [20:10:23.578] [000000704]: Loading step: [Object Alpha Factor Function] +(I) [20:10:23.578] [000000704]: Loading step: [Renderable Managers] +(I) [20:10:23.578] [000000704]: Loading step: [Setup Skins] +(I) [20:10:23.579] [000000704]: Loading step: [AnimEventSetup] +(I) [20:10:23.579] [000000704]: Loading step: [Session Precache] +(I) [20:10:23.697] [000000704]: Loading step: [Precache core resources] +(I) [20:10:23.698] [000000704]: Loading step: [Precache EBPs] +(I) [20:10:23.700] [000000704]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [20:10:23.700] [000000704]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [20:10:23.700] [000000704]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [20:10:23.700] [000000704]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [20:10:23.781] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:10:23.781] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:10:23.781] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:10:23.781] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:10:23.781] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:10:23.781] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:10:23.781] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:10:23.781] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:10:23.781] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:10:23.781] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:10:23.781] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:10:23.781] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:10:23.781] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:10:23.781] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:10:23.781] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:10:23.781] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:10:23.781] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:10:23.781] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:10:23.781] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:10:23.781] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:10:23.781] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:10:23.781] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:10:23.781] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:10:23.781] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:10:23.781] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:10:23.781] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:10:23.781] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:10:23.781] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:10:23.781] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:10:24.021] [000000704]: Loading step: [Precache State Tree references] +(I) [20:10:24.065] [000000704]: Loading step: [Load Actions] +(I) [20:10:24.067] [000000704]: Loading step: [Load Resources from Precache] +(I) [20:10:29.222] [000013504]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [3066931923]. +(I) [20:10:29.711] [000000704]: Loading step: [GEWorld] +(I) [20:10:29.711] [000000704]: GAME - InitializeGEWorld +(I) [20:10:29.852] [000000704]: Re-winding a compressed stream for file 'data:scenarios\multiplayer\cliff_crossing_2p\cliff_crossing_2p.scenario'. Expensive operation +(I) [20:10:30.134] [000000704]: Regenerating ImpassMap data... +(I) [20:10:30.265] [000000704]: Regenerating SimTerrainCoverMap data... +(I) [20:10:30.282] [000000704]: SimTerrainCoverMap generation took 0.016505 seconds. +(I) [20:10:30.452] [000000704]: Pathfinding::Regenerate()... +(I) [20:10:30.532] [000000704]: Pathfinding::Regenerate() Done. +(I) [20:10:30.712] [000013504]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [3066931923]. +(I) [20:10:30.757] [000000704]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [20:10:30.757] [000000704]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [20:10:30.757] [000000704]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [20:10:30.757] [000000704]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [20:10:30.757] [000000704]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [20:10:30.757] [000000704]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [20:10:30.757] [000000704]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [20:10:30.757] [000000704]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [20:10:30.757] [000000704]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [20:10:30.757] [000000704]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [20:10:30.757] [000000704]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [20:10:30.757] [000000704]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [20:10:30.757] [000000704]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [20:10:30.757] [000000704]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [20:10:30.757] [000000704]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [20:10:30.757] [000000704]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [20:10:30.757] [000000704]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [20:10:30.757] [000000704]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [20:10:30.757] [000000704]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [20:10:30.757] [000000704]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [20:10:30.757] [000000704]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [20:10:30.757] [000000704]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [20:10:30.757] [000000704]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [20:10:30.757] [000000704]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [20:10:30.757] [000000704]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [20:10:30.757] [000000704]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [20:10:30.757] [000000704]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [20:10:30.757] [000000704]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [20:10:30.757] [000000704]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [20:10:30.757] [000000704]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [20:10:30.757] [000000704]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [20:10:30.757] [000000704]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [20:10:30.784] [000000704]: GAME - CreateGEWorld in 1072 ms +(I) [20:10:30.784] [000000704]: SIM -- Setting SyncErrorChecking level to Low +(I) [20:10:30.784] [000000704]: Loading step: [Load Resources from GEWorld] +(I) [20:10:30.848] [000000704]: Loading step: [Sound Banks] +(I) [20:10:30.848] [000000704]: Loading step: [Session] +(I) [20:10:30.848] [000000704]: GAME - SessionSetup +(I) [20:10:30.848] [000000704]: GAME - SessionSetup finished in 0 ms +(I) [20:10:30.848] [000000704]: Loading step: [Player Setup] +(I) [20:10:30.856] [000000704]: GAME -- Recording game +(I) [20:10:30.856] [000000704]: Loading step: [Scenario Lua System] +(I) [20:10:30.873] [000000704]: Loading step: [Team Colour Init] +(I) [20:10:30.873] [000000704]: Loading step: [Race Precaching Event Listener Registration] +(I) [20:10:30.873] [000000704]: Loading step: [Simulation] +(I) [20:10:30.906] [000000704]: LoadWinCondition: - [winconditions\mode_victorypoint] succeeded. +(I) [20:10:31.070] [000000704]: Player [] killed on game tick [0] due to [unused player] +(I) [20:10:31.070] [000000704]: Player [] killed on game tick [0] due to [unused player] +(I) [20:10:31.070] [000000704]: Player [] killed on game tick [0] due to [unused player] +(I) [20:10:31.070] [000000704]: Player [] killed on game tick [0] due to [unused player] +(I) [20:10:31.070] [000000704]: Player [] killed on game tick [0] due to [unused player] +(I) [20:10:31.070] [000000704]: Player [] killed on game tick [0] due to [unused player] +(I) [20:10:31.070] [000000704]: Player [] killed on game tick [0] due to [unused player] +(I) [20:10:31.070] [000000704]: Player [] killed on game tick [0] due to [unused player] +(I) [20:10:31.070] [000000704]: Player [] killed on game tick [0] due to [unused player] +(I) [20:10:31.070] [000000704]: Player [] killed on game tick [0] due to [unused player] +(I) [20:10:31.070] [000000704]: Player [] killed on game tick [0] due to [unused player] +(I) [20:10:31.070] [000000704]: Player [] killed on game tick [0] due to [unused player] +(I) [20:10:31.070] [000000704]: Player [] killed on game tick [0] due to [unused player] +(I) [20:10:31.070] [000000704]: Player [] killed on game tick [0] due to [unused player] +(I) [20:10:31.316] [000000704]: Loading step: [GameUICore System] +(I) [20:10:31.325] [000000704]: Loading step: [UI System] +(I) [20:10:31.325] [000000704]: Loading step: [LUA] +(I) [20:10:31.325] [000000704]: Loading step: [Game Event Listener Registration] +(I) [20:10:31.325] [000000704]: Loading step: [CPU AI] +(I) [20:10:31.328] [000012352]: Registered essence thread: [AI_Thread] usesRcssWorkerThreads: [true] +(I) [20:10:31.332] [000000704]: Loading step: [Scar Init] +(I) [20:10:31.332] [000000704]: Loading step: [FX System] +(I) [20:10:31.332] [000000704]: Loading step: [Cheat Menu] +(I) [20:10:31.336] [000000704]: Loading step: [Scar Start] +(I) [20:10:31.337] [000000704]: Loading step: [Load resources] +(I) [20:10:31.341] [000000704]: Loading step: [PreDisplay] +(I) [20:10:31.341] [000000704]: Loading step: [Free Loading Data] +(I) [20:10:31.341] [000000704]: PreloadResources took 0ms. +(I) [20:10:31.341] [000000704]: Loading step: [MemShrink] +(I) [20:10:31.341] [000000704]: Loading step: [Flush Inventory] +(I) [20:10:31.346] [000000704]: Loading step: [Resolve Impasse Blockers] +(I) [20:10:31.346] [000000704]: Loading step: [Convert OOB Static Entities to Visual Only Objects] +(I) [20:10:31.346] [000000704]: Loading step: [DefaultWorld Begin Play] +(I) [20:10:31.409] [000000704]: Loading step: [Preparing game] +(I) [20:10:31.409] [000000704]: Loading step: [Start Renderer] +(I) [20:10:31.409] [000000704]: Loading step: [FrontEnd simulation initialization] +(I) [20:10:31.409] [000000704]: Loading step: [WPFGFrontEnd loading] +(I) [20:10:31.412] [000000704]: Loading step: [OnEndLoad] +(I) [20:10:31.745] [000013504]: LoadArbitrator::UpdateLoadProgress - info, player "[0:2]" finished loading with checksum [3066931923]. +(I) [20:10:32.144] [000013504]: PerformanceRecorder::StartRecording for game size 2 +(I) [20:10:32.144] [000013504]: GAME -- Starting mission: data:scenarios\multiplayer\cliff_crossing_2p\cliff_crossing_2p +(I) [20:10:32.144] [000013504]: MEM -- available page 13523 mb, total page 40880 mb +(I) [20:10:32.152] [000013504]: GameApp::SetState : new (Game) old (LoadingGame) +(I) [20:10:32.152] [000013504]: GameApp::SetTargetState : new (Uninitialized) old (Game) +(I) [20:10:35.599] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e41d994ad1b7b4cf61ac3590964dff51edeba12ab99ac6f3c338a1eb33561830 +(I) [20:10:44.002] [000013504]: Local user framerate is [0.000000] +(I) [20:10:44.002] [000013504]: Local user MinDelay=[31ms], MaxDelay=[193ms], AvgDelay=[119ms], minRTT[24ms], maxRTT[151ms], avgRTT[114ms] +(I) [20:10:45.725] [000023384]: Read bytes [0,"MatchReceivedChatMessage",16432,[80459,"gl hf","gl hf",2,5805364]] +(I) [20:10:45.725] [000013504]: Received chat message { gl hf } +(I) [20:10:45.725] [000013504]: Starting FilterChatJob for message { gl hf } +(I) [20:10:45.753] [000013504]: Posting chat event from FilterChatJob for message { gl hf } +(I) [20:10:49.595] [000013504]: Sent match chat message { hi } +(I) [20:10:49.777] [000013504]: Response received after sending match chat message { hi } +(I) [20:10:55.009] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4cac96cd2c44536ce643eed2c6d0b5eb63c9a1fd19f07e12c3afe1f648d4cb35 +(I) [20:11:05.000] [000013504]: Local user framerate is [136.036392] +(I) [20:11:05.000] [000013504]: Local user MinDelay=[31ms], MaxDelay=[193ms], AvgDelay=[110ms], minRTT[24ms], maxRTT[151ms], avgRTT[122ms] +(I) [20:11:07.006] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=117/28, mdat=279/558, voip=0/0, rchk=0/0, nudg=4/6, Thdr=0/0, Peer=18/34, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=18/17, lb_p=27/7, lb_c=0/0, cast=0/0, cdat=90/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:11:10.008] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=13/0, mdat=24/48, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=3/1, lb_c=0/0, cast=0/0, cdat=12/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:11:19.012] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4226ad677366dec3646d1fe086b79c99b01724621d29a86b20ae043ac174f5db +(I) [20:11:26.004] [000013504]: Local user framerate is [140.407867] +(I) [20:11:26.004] [000013504]: Local user MinDelay=[31ms], MaxDelay=[193ms], AvgDelay=[103ms], minRTT[24ms], maxRTT[158ms], avgRTT[129ms] +(I) [20:11:47.000] [000013504]: Local user framerate is [141.842896] +(I) [20:11:47.000] [000013504]: Local user MinDelay=[64ms], MaxDelay=[92ms], AvgDelay=[79ms], minRTT[22ms], maxRTT[165ms], avgRTT[74ms] +(I) [20:11:50.010] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=99bd662acd091b7620ff74c63e272cbd148d415709565dd1073c34b08b29a46d +(I) [20:12:02.213] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=259a0080e0c09174b1a196969e3e541edca75a34dd4cb5a024476aa48a29fb32 +(I) [20:12:08.002] [000013504]: Local user framerate is [142.414383] +(I) [20:12:08.002] [000013504]: Local user MinDelay=[52ms], MaxDelay=[92ms], AvgDelay=[72ms], minRTT[22ms], maxRTT[165ms], avgRTT[67ms] +(I) [20:12:08.007] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=173/0, mdat=463/926, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=27/7, lb_c=0/0, cast=0/0, cdat=163/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:12:11.006] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=19/0, mdat=24/48, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=3/1, lb_c=0/0, cast=0/0, cdat=14/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:12:22.007] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=381b4aea277e4dec41424d394f78d7b97060ce52afb6b6bec6d4783dc90924fd +(I) [20:12:26.781] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3bbe963bb1123f53272d3296453bb4b5dd1a15511da2e941ab9a6dad16c9f9fe +(I) [20:12:29.000] [000013504]: Local user framerate is [141.735825] +(I) [20:12:29.000] [000013504]: Local user MinDelay=[49ms], MaxDelay=[92ms], AvgDelay=[66ms], minRTT[22ms], maxRTT[165ms], avgRTT[68ms] +(I) [20:12:40.299] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f4909dabc9b7aa713a758633ffdeab42dfad2417e3563768f42e12a3c5670374 +(I) [20:12:50.001] [000013504]: Local user framerate is [142.050003] +(I) [20:12:50.001] [000013504]: Local user MinDelay=[36ms], MaxDelay=[59ms], AvgDelay=[48ms], minRTT[41ms], maxRTT[150ms], avgRTT[73ms] +(I) [20:12:52.639] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=db242c04c64e78e60fc37f2c071acc34f2427260a67470b204d47b37bd445b1c +(I) [20:13:02.612] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c81fb3cebfa7b6862ca03efc841940ffc911894d251dd2417bcdec067bce73e1 +(I) [20:13:09.008] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=176/0, mdat=464/928, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=30/8, lb_c=0/0, cast=0/0, cdat=164/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:13:11.003] [000013504]: Local user framerate is [142.042892] +(I) [20:13:11.003] [000013504]: Local user MinDelay=[35ms], MaxDelay=[59ms], AvgDelay=[45ms], minRTT[36ms], maxRTT[163ms], avgRTT[77ms] +(I) [20:13:12.002] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=5/0, mdat=24/48, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=1/0, lb_c=0/0, cast=0/0, cdat=4/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:13:21.313] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8c6eac80d9942d8c697cd4c6d53245423f4bf65a343f2f8e6902d816aa79fa31 +(I) [20:13:32.004] [000013504]: Local user framerate is [142.178665] +(I) [20:13:32.005] [000013504]: Local user MinDelay=[35ms], MaxDelay=[59ms], AvgDelay=[44ms], minRTT[33ms], maxRTT[163ms], avgRTT[77ms] +(I) [20:13:32.173] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7d2d6eefd9954cde3c737924ab6b4e2cf8112fbbec645f2e116966e6a558afb3 +(I) [20:13:50.584] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7a6a76ea0091e43766f5a91f9ff16542b241dfc572514650095c25f5e0bffed9 +(I) [20:13:52.616] [000023384]: Read bytes [0,"PresenceMessage",16432,[[1011,53758,"/steam/76561198010453859","","Seek & Destroy","",33285,1281,1281,2074389,null,"76561198010453859",3,[],1,"En ligne",[[1409823,""]]]]] +(I) [20:13:52.620] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.013] [000013504]: Local user framerate is [141.449997] +(I) [20:13:53.013] [000013504]: Local user MinDelay=[35ms], MaxDelay=[57ms], AvgDelay=[43ms], minRTT[33ms], maxRTT[99ms], avgRTT[69ms] +(I) [20:13:53.117] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.117] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.117] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.117] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.117] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.117] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.117] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.117] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.117] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.117] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.117] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.117] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.117] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.117] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.117] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.117] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.117] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.117] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.117] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.117] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.117] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.117] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.117] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.117] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.117] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.117] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.117] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.117] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.117] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.432] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.432] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.432] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.432] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.432] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.432] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.432] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.432] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.432] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.432] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.432] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.432] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.432] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.432] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.432] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.432] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.432] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.432] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.432] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.432] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.432] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.432] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.432] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.432] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.432] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.432] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:53.432] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:13:56.400] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f706abb04110cb53c234effc744118b3c4ccf91ee4f4edb757cf9dcd175f47a7 +(I) [20:14:10.002] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=197/0, mdat=464/928, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=29/8, lb_c=0/0, cast=0/0, cdat=179/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:14:13.001] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=11/0, mdat=24/48, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=1/0, lb_c=0/0, cast=0/0, cdat=9/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:14:14.005] [000013504]: Local user framerate is [139.699997] +(I) [20:14:14.005] [000013504]: Local user MinDelay=[35ms], MaxDelay=[57ms], AvgDelay=[43ms], minRTT[33ms], maxRTT[146ms], avgRTT[72ms] +(I) [20:14:14.248] [000023384]: Read bytes [0,"PresenceMessage",16432,[[1012,53758,"/steam/76561198010453859","","Seek & Destroy","",33285,1281,1281,2074389,null,"76561198010453859",3,[],2,"En ligne",[[1409823,""]]]]] +(I) [20:14:14.251] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:14:16.019] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5114a2e115f6f15e2f6658e17f2a5a25eb36373b733c90a5675bb0920dd2b4d4 +(I) [20:14:29.877] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e164e7bda7378924a4163a1aa804f51d922eaa9986a80b118b14be41ccc47ca8 +(I) [20:14:35.001] [000013504]: Local user framerate is [140.421906] +(I) [20:14:35.001] [000013504]: Local user MinDelay=[42ms], MaxDelay=[50ms], AvgDelay=[46ms], minRTT[54ms], maxRTT[75ms], avgRTT[68ms] +(I) [20:14:40.937] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=22e0020d6225a199edba4fd79c3bc890ddbe7764c6ace38478cc6af315aaefb4 +(I) [20:14:48.724] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9f7bf6fc4ab2a9a4af71e0fb7ef033dda642a120ff9682cd6bcef6154bae5fe7 +(I) [20:14:56.006] [000013504]: Local user framerate is [140.078979] +(I) [20:14:56.006] [000013504]: Local user MinDelay=[35ms], MaxDelay=[57ms], AvgDelay=[45ms], minRTT[35ms], maxRTT[143ms], avgRTT[74ms] +(I) [20:14:58.771] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=eaf150b90366707c25362c8aee27ca4e76f88b17d489703b266531d606531f54 +(I) [20:15:07.736] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d01e193be4eb8636ee7af7b50eff6f3064620214f540dde20f981c79e8b9c26e +(I) [20:15:11.006] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=233/0, mdat=464/928, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=29/8, lb_c=0/0, cast=0/0, cdat=209/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:15:14.005] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=8/0, mdat=24/48, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=1/0, lb_c=0/0, cast=0/0, cdat=8/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:15:14.099] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8077b0a54eb5a4386f190e64ac028819c5159b6858221a05511ea0a3308ea3f1 +(I) [20:15:17.002] [000013504]: Local user framerate is [140.535934] +(I) [20:15:17.002] [000013504]: Local user MinDelay=[29ms], MaxDelay=[57ms], AvgDelay=[44ms], minRTT[34ms], maxRTT[153ms], avgRTT[76ms] +(I) [20:15:30.068] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1085a25f575e888e6c9589ba0e4b07eb1602f967b3747f2887d7fa0a56161ac6 +(I) [20:15:38.000] [000013504]: Local user framerate is [139.779037] +(I) [20:15:38.000] [000013504]: Local user MinDelay=[22ms], MaxDelay=[50ms], AvgDelay=[43ms], minRTT[42ms], maxRTT[133ms], avgRTT[73ms] +(I) [20:15:38.358] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=45eda9757f67972d94be36db386a732cbccb3e54ec30772997b2b404a89b5c9c +(I) [20:15:43.334] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7aa506d023b852f5b3457858ecc15d5c4f14e2914d566be026e18890e0a0d8d6 +(I) [20:15:47.773] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3e3637518a0727aa780bd4ca2adb9c2119799c1c14fb75a4646aa4c23ef1b5a7 +(I) [20:15:54.478] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=72ee21c7e905b05ccda86a5c03ee1b35b8d888d8f970d72e5b80690f5878aa44 +(I) [20:15:59.004] [000013504]: Local user framerate is [139.444214] +(I) [20:15:59.004] [000013504]: Local user MinDelay=[22ms], MaxDelay=[51ms], AvgDelay=[42ms], minRTT[30ms], maxRTT[157ms], avgRTT[77ms] +(I) [20:16:06.828] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=484895fc62bd9ae99d7fd09562bb00077bdccb6fe4a558ead0eb0f412f6c9f04 +(I) [20:16:12.001] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=209/0, mdat=463/926, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=30/8, lb_c=0/0, cast=0/0, cdat=198/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:16:15.003] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=7/0, mdat=24/48, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=1/0, lb_c=0/0, cast=0/0, cdat=5/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:16:16.088] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e1f54e57ba177478460057c596671c338946b5c954cd23705423d24631fd7b66 +(I) [20:16:20.000] [000013504]: Local user framerate is [140.035995] +(I) [20:16:20.000] [000013504]: Local user MinDelay=[21ms], MaxDelay=[63ms], AvgDelay=[42ms], minRTT[30ms], maxRTT[157ms], avgRTT[78ms] +(I) [20:16:26.323] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ad61fab3585de01cac506653cf906866ed46d63294341a8210a53a934f23541d +(I) [20:16:34.290] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c67c630c04252ba956ff4d62838bf415dbaf907f59101ebdc4e81756a8b08b2c +(I) [20:16:38.482] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4727e38a3ce56a0642816960a60de189d4296ccfc4c6b4fc9badbd202a189797 +(I) [20:16:41.015] [000013504]: Local user framerate is [140.014984] +(I) [20:16:41.015] [000013504]: Local user MinDelay=[29ms], MaxDelay=[50ms], AvgDelay=[40ms], minRTT[26ms], maxRTT[143ms], avgRTT[78ms] +(I) [20:16:49.422] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=01ce1a6a8aab1248bb69c976cb4cad2d76270e35ba3214a2ead7eba9cb5a22de +(I) [20:16:58.177] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a39f63bc299e6de2e5af060a3ebc72d018b0ee433b8c41aeb5fb1efa70887d40 +(I) [20:17:02.005] [000013504]: Local user framerate is [138.850006] +(I) [20:17:02.005] [000013504]: Local user MinDelay=[22ms], MaxDelay=[50ms], AvgDelay=[39ms], minRTT[26ms], maxRTT[159ms], avgRTT[79ms] +(I) [20:17:03.234] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=855655e993a2f436f9a1b3f336d54e8f8936b78e762ea4ac2175c46315e6ecf8 +(I) [20:17:08.548] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b41a522eab4baeb36198f3d1c98c15927fc21204c0cd324dbdabed981bf3dab7 +(I) [20:17:13.010] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=207/0, mdat=464/928, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=29/8, lb_c=0/0, cast=0/0, cdat=190/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:17:16.009] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=11/0, mdat=24/48, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=1/0, lb_c=0/0, cast=0/0, cdat=11/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:17:20.725] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=15bf13d060995fb12938cf9eeb3bb228624234578ca0d918f26ed2ce74e5e2a1 +(I) [20:17:23.001] [000013504]: Local user framerate is [140.278961] +(I) [20:17:23.001] [000013504]: Local user MinDelay=[22ms], MaxDelay=[50ms], AvgDelay=[39ms], minRTT[26ms], maxRTT[159ms], avgRTT[80ms] +(I) [20:17:36.879] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fedeca0745a687e84d2564d11443a5b396583cae85d3065523a09ce437aa80c3 +(I) [20:17:43.381] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8e41ef8cb556c8df11658b4b521167f6876a255e4bf76787f744f69d3ff10941 +(I) [20:17:44.008] [000013504]: Local user framerate is [141.164703] +(I) [20:17:44.008] [000013504]: Local user MinDelay=[29ms], MaxDelay=[51ms], AvgDelay=[41ms], minRTT[35ms], maxRTT[142ms], avgRTT[77ms] +(I) [20:17:49.942] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e31535f4c6bbde722d95f41ddec88555126fdda7e46257aa9f33883dad0ded52 +(I) [20:17:56.105] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2b0d7125ceec0c59e0c221e173b3b39861aab2c1febca9a9bdcc2e3a775a378a +(I) [20:18:05.013] [000013504]: Local user framerate is [138.629211] +(I) [20:18:05.013] [000013504]: Local user MinDelay=[28ms], MaxDelay=[52ms], AvgDelay=[42ms], minRTT[35ms], maxRTT[149ms], avgRTT[78ms] +(I) [20:18:08.967] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5215c8dfe40c39a89db592e8ca4644043d92d81c72b066adf9b8e8fa4f2b24e7 +(I) [20:18:14.000] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=221/0, mdat=464/928, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=29/8, lb_c=0/0, cast=0/0, cdat=204/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:18:17.008] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=17/0, mdat=24/48, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=1/0, lb_c=0/0, cast=0/0, cdat=16/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:18:17.621] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6acb9ca8e1f3e324f2edd09c91e3707b57aefb06accfa3e8ac06f50d5a8f75d8 +(I) [20:18:25.606] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c04713c8afc84fb6804414aa687dec27dc195c07fcf345207e4c4105eee60e90 +(I) [20:18:26.005] [000013504]: Local user framerate is [140.135986] +(I) [20:18:26.005] [000013504]: Local user MinDelay=[28ms], MaxDelay=[56ms], AvgDelay=[43ms], minRTT[35ms], maxRTT[149ms], avgRTT[78ms] +(I) [20:18:32.192] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5e8c362fb61676bfac27686d75aa65833c21a935be7e74b915e6ac1798562a74 +(I) [20:18:43.057] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=57633b0b75f04e37a0ae37acbd3ff8d4273d23e70545e84cd89683ed8dda1e28 +(I) [20:18:47.006] [000013504]: Local user framerate is [140.085983] +(I) [20:18:47.006] [000013504]: Local user MinDelay=[35ms], MaxDelay=[53ms], AvgDelay=[43ms], minRTT[43ms], maxRTT[152ms], avgRTT[74ms] +(I) [20:18:56.660] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6488c9e64f603bfbb9a605ede6b6e54fd824f282119dec788a6f4a09f49a3eeb +(I) [20:19:05.710] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8d4add7fddf22e4993f37952db03870ebd9a586ca8557040fff51d4cf4f6a4af +(I) [20:19:08.000] [000013504]: Local user framerate is [137.449997] +(I) [20:19:08.000] [000013504]: Local user MinDelay=[29ms], MaxDelay=[53ms], AvgDelay=[41ms], minRTT[36ms], maxRTT[153ms], avgRTT[78ms] +(I) [20:19:12.488] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4623cd1a35c76ed3eb572190a56f3ed2214d471a10f4119e4c7592b0bb99008d +(I) [20:19:15.001] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=216/0, mdat=464/928, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=30/8, lb_c=0/0, cast=0/0, cdat=203/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:19:18.009] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=14/0, mdat=24/48, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=0/0, lb_c=0/0, cast=0/0, cdat=13/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:19:24.927] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=68f47b1a7c7e22fcc8b3b26afd0cdd37d7be681252ffb0ecaf9161af34e54ac4 +(I) [20:19:26.467] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=89206370a918ac33cdc11cd6529d6cbb326c25c8e4d1ee3de35943f64df02972 +(I) [20:19:29.006] [000013504]: Local user framerate is [139.815033] +(I) [20:19:29.006] [000013504]: Local user MinDelay=[29ms], MaxDelay=[53ms], AvgDelay=[41ms], minRTT[26ms], maxRTT[153ms], avgRTT[78ms] +(I) [20:19:31.089] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5b57ccc98f0eb6062a5652ebed9bef282f834f999088bbd36f7ac13b7eedf420 +(I) [20:19:39.079] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f786e458d7852bbd9d6a3b622365e20691aa7a56f18a9bf0ffeab96c41195118 +(I) [20:19:50.003] [000013504]: Local user framerate is [140.135986] +(I) [20:19:50.003] [000013504]: Local user MinDelay=[35ms], MaxDelay=[54ms], AvgDelay=[41ms], minRTT[37ms], maxRTT[153ms], avgRTT[76ms] +(I) [20:19:50.503] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8be08c6ca794497a17a51e1e464bd3274029aa37b3a916b8ed183905f78c813b +(I) [20:20:02.787] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3bbda763fc19d6a467ea4c988a8c739ae2ae3f53cc24c7335ab4fc7156feb26a +(I) [20:20:04.026] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=16b335786f70fae4e5aeb92420c877d5185c74111102a98b8a583aff9252b94d +(I) [20:20:11.002] [000013504]: Local user framerate is [140.078979] +(I) [20:20:11.002] [000013504]: Local user MinDelay=[29ms], MaxDelay=[61ms], AvgDelay=[42ms], minRTT[33ms], maxRTT[153ms], avgRTT[79ms] +(I) [20:20:11.537] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=291f1d4a61eeed674c5ef81584d25b444e9f0ff685e4bec4f020e8970450b2e7 +(I) [20:20:16.009] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=193/0, mdat=463/926, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=30/8, lb_c=0/0, cast=0/0, cdat=180/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:20:18.265] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=66973c8b071206167e1650d873922e6cd0853f4b5366810fb1c0a9245c75991f +(I) [20:20:19.007] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=12/0, mdat=24/48, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=1/0, lb_c=0/0, cast=0/0, cdat=11/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:20:20.097] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2b6af2294fab770de6280fd265e0585fe65fa4f5461431c760bdda7a3a8cb401 +(I) [20:20:22.110] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=14e6342c572e4491fb204ba5491c4cb28cdae0a563ed6fef6b9a5508038157ab +(I) [20:20:22.970] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=259d18a57951418c4cd408f665c06555703ad325d0de24d6a5621d525a7a3e46 +(I) [20:20:25.491] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a64ccee8ffd526e80229a1293148088b3e48635a9e2d87f9ae20a920caa4a78c +(I) [20:20:32.005] [000013504]: Local user framerate is [136.229568] +(I) [20:20:32.005] [000013504]: Local user MinDelay=[29ms], MaxDelay=[61ms], AvgDelay=[42ms], minRTT[33ms], maxRTT[149ms], avgRTT[78ms] +(I) [20:20:32.204] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2965a84e18cce02e599b743fa7add84b16f5c0f3feeff0ea9ab8424b33516efa +(I) [20:20:47.279] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a911483515d3b82797369b150466bcf927e310e5b0de844925308a5146c7ea87 +(I) [20:20:53.006] [000013504]: Local user framerate is [136.922607] +(I) [20:20:53.006] [000013504]: Local user MinDelay=[21ms], MaxDelay=[51ms], AvgDelay=[40ms], minRTT[35ms], maxRTT[150ms], avgRTT[76ms] +(I) [20:20:58.612] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0627af28e5f40b37b00afc522d7abc5a15bae81c52b8172525d9700048c8c3b7 +(I) [20:21:02.776] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=bae43f32e1713b66ddaea68bb3b09eda709150acc852a343127d7885e58295d9 +(I) [20:21:08.110] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e84aed142f9ef68cf775bb7b3fc77be76ff27a2cfe9b3858def76c3a17042997 +(I) [20:21:14.004] [000013504]: Local user framerate is [138.300003] +(I) [20:21:14.004] [000013504]: Local user MinDelay=[21ms], MaxDelay=[52ms], AvgDelay=[41ms], minRTT[34ms], maxRTT[162ms], avgRTT[76ms] +(I) [20:21:14.147] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=34b6b09b78b4332397704a76d14a9d63ed10fb74bbb743c3daf578e607e00551 +(I) [20:21:15.052] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=584292a7e18dee48a4a1f481b227f7781757ff94256f04d0c16f0665f4216335 +(I) [20:21:15.619] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=46c683c5fcbfb9069b9b12fe19408d426ab2c994af0b9e85fae3b21956a9493e +(I) [20:21:17.001] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=230/0, mdat=464/928, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=29/8, lb_c=0/0, cast=0/0, cdat=206/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:21:18.300] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1febe6a39d79959ef3fc5178597cebde045fa5a9f5da37204ab2bc5d4a2bc56b +(I) [20:21:19.473] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b111688ccd1a207b1d7762b0a76f6868dd9960c3b03b0f2e41739a064a7ffd80 +(I) [20:21:20.010] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=15/0, mdat=24/48, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=1/0, lb_c=0/0, cast=0/0, cdat=12/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:21:26.668] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=39bf114f844c229815b4deedf19637e6e8df7cba2e9b88528388b6335ac7b926 +(I) [20:21:30.017] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5217c68a5a3fd705a14417c1fccaa111ad5fbb095e4198863c0b678cad560e0d +(I) [20:21:33.283] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=17c67aba2117de26bba56dbe9f6b149148d3c2a49cbe7b3a43bca679374e4a5a +(I) [20:21:35.004] [000013504]: Local user framerate is [135.359390] +(I) [20:21:35.004] [000013504]: Local user MinDelay=[35ms], MaxDelay=[53ms], AvgDelay=[43ms], minRTT[53ms], maxRTT[70ms], avgRTT[65ms] +(I) [20:21:48.720] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=15fd1d973dbc33bc5581b3669289ad576fca777e3d5cefd923b5d85f1b042fbe +(I) [20:21:51.182] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6e63fecfe1f2fe4e02551beedd8b45d461d3ddf69aa0dd45ef999b9192b56ed2 +(I) [20:21:56.010] [000013504]: Local user framerate is [138.279251] +(I) [20:21:56.010] [000013504]: Local user MinDelay=[35ms], MaxDelay=[53ms], AvgDelay=[43ms], minRTT[27ms], maxRTT[152ms], avgRTT[71ms] +(I) [20:22:04.432] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c4718b12f2789a5ac7653076830b31a2e08fe30373c30c78208990c17d45c958 +(I) [20:22:15.606] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d24a81cb1d9c7163e431a8fc78a172ffa87ee1cb8245c53981b3bd8b8d8d2769 +(I) [20:22:17.006] [000013504]: Local user framerate is [140.164948] +(I) [20:22:17.006] [000013504]: Local user MinDelay=[21ms], MaxDelay=[54ms], AvgDelay=[43ms], minRTT[27ms], maxRTT[152ms], avgRTT[74ms] +(I) [20:22:18.004] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=219/0, mdat=464/928, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=29/8, lb_c=0/0, cast=0/0, cdat=202/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:22:21.000] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=12/0, mdat=24/48, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=2/1, lb_c=0/0, cast=0/0, cdat=11/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:22:35.011] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=635acc3c539bb8b6f1b06345eeccdc96bbee4a964beff1270ef33d8370f591f0 +(I) [20:22:38.004] [000013504]: Local user framerate is [136.422699] +(I) [20:22:38.004] [000013504]: Local user MinDelay=[36ms], MaxDelay=[57ms], AvgDelay=[46ms], minRTT[55ms], maxRTT[113ms], avgRTT[69ms] +(I) [20:22:39.701] [000013504]: Sent match chat message { WTF } +(I) [20:22:40.192] [000013504]: Response received after sending match chat message { WTF } +(I) [20:22:43.697] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3b92efd2911faf18eb17dc62812c1180972cb26e7274c0ce5c504223e8716af6 +(I) [20:22:44.485] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d9316e65bcb468ffc1476bae41ba849eec7b233d4ab70581b942430856bf7ee1 +(I) [20:22:47.077] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=51b90c8f6574c08e8f71256eedd1daeb72e3c6926f8fc188532fe353e7c13a14 +(I) [20:22:49.976] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=93a1a02d2c21e69a47eba7426d0f27ffc9bfe454878b6e3e3426f84cd648370c +(I) [20:22:56.855] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a468f86fc02d043752d650f3f6caf05b5b50becddd5df3dd5996143dde54597d +(I) [20:22:59.004] [000013504]: Local user framerate is [139.329102] +(I) [20:22:59.004] [000013504]: Local user MinDelay=[34ms], MaxDelay=[57ms], AvgDelay=[44ms], minRTT[30ms], maxRTT[160ms], avgRTT[78ms] +(I) [20:23:00.839] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0ec132c9e9b0fe4aa7954da8e93ba5f25955c4d92e56cdfa750e24ce00d22b85 +(I) [20:23:06.942] [000013504]: Sent match chat message { you take 0 dommage burn fck off } +(I) [20:23:07.110] [000013504]: Response received after sending match chat message { you take 0 dommage burn fck off } +(I) [20:23:12.695] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cf36235eed047d580c3331242989bba31d29f64811c4d6c6c1290747e67b49c0 +(I) [20:23:19.002] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=216/0, mdat=464/928, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=2/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=2/0, lb_p=29/7, lb_c=0/0, cast=0/0, cdat=194/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:23:20.002] [000013504]: Local user framerate is [136.172760] +(I) [20:23:20.002] [000013504]: Local user MinDelay=[29ms], MaxDelay=[57ms], AvgDelay=[44ms], minRTT[24ms], maxRTT[160ms], avgRTT[75ms] +(I) [20:23:22.005] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=9/0, mdat=24/48, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=2/1, lb_c=0/0, cast=0/0, cdat=9/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:23:23.568] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=207e45868f43e350ff55445162797608b16b5e2c3cd81268595f33903fd94188 +(I) [20:23:29.610] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=470d45a5774872b6606f56f8f16d2ca17b2552d7260eaed4936deaeed3eb9998 +(I) [20:23:34.948] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=72ea3b1e17aebfa02de4366498f0ee73f3338300f8bf6096a2f7103826b0060a +(I) [20:23:41.005] [000013504]: Local user framerate is [139.072174] +(I) [20:23:41.005] [000013504]: Local user MinDelay=[36ms], MaxDelay=[60ms], AvgDelay=[46ms], minRTT[53ms], maxRTT[139ms], avgRTT[72ms] +(I) [20:23:43.999] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a0cd544acffc52de062232a7fde1dfc3ca19cf2af4cb079e8696710ea711a2d8 +(I) [20:23:44.843] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=26c517a0e5b734ba86334a006a032206e4d168a80003f576d5998e1e044a1833 +(I) [20:23:45.476] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e61bd334107b9cecf61be4f09937c2c186ef36921d5968b3a1a4adea74aa34b7 +(I) [20:23:54.977] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4a354fba1ad02676146c941718f9e97269d01578d5daa930b92ccfc17a6ba9bc +(I) [20:24:02.004] [000013504]: Local user framerate is [137.850006] +(I) [20:24:02.004] [000013504]: Local user MinDelay=[36ms], MaxDelay=[60ms], AvgDelay=[46ms], minRTT[33ms], maxRTT[164ms], avgRTT[74ms] +(I) [20:24:07.576] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9918ebcbe050244dfd4a86f494d51addafc7686c7dc4c02cb9ca057e18eae6f4 +(I) [20:24:13.768] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8bc7d283fe6d9bf34e585bb4054e9999fb02dcb13a7df9108e519c758dd55958 +(I) [20:24:18.977] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c900fefcbc62d554f2b00ce63b7d8d53c2e180b1a62ea9d6954d3501e6a45fa6 +(I) [20:24:20.007] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=253/0, mdat=463/926, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=28/7, lb_c=0/0, cast=0/0, cdat=223/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:24:21.317] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5dc565715b5788af753d02bf557f442d25b7f1d5da87e7481dcdf4e415155902 +(I) [20:24:23.000] [000013504]: Local user framerate is [137.750000] +(I) [20:24:23.000] [000013504]: Local user MinDelay=[35ms], MaxDelay=[60ms], AvgDelay=[45ms], minRTT[33ms], maxRTT[164ms], avgRTT[74ms] +(I) [20:24:23.004] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=13/0, mdat=24/48, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=2/1, lb_c=0/0, cast=0/0, cdat=13/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:24:29.016] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e8cd519a068161404f17b0dc9f52949b0ed5ca1f3573a71d4ca1378c43dfaf24 +(I) [20:24:44.005] [000013504]: Local user framerate is [138.843048] +(I) [20:24:44.005] [000013504]: Local user MinDelay=[35ms], MaxDelay=[67ms], AvgDelay=[45ms], minRTT[36ms], maxRTT[146ms], avgRTT[69ms] +(I) [20:24:44.586] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c33548db431833d8d35be17b70b2e1c3ce57b43c34d96f04b32616af474a7989 +(I) [20:24:55.832] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c4d24ce4fa8c017ea324675e4c39c0e2fd2237739441b95000df4991cf4cc39d +(I) [20:24:56.628] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=231eddf4cc82d767af78c3ed1bf8755e8ae3b92fd3a3808ad97c207d8b041326 +(I) [20:25:05.003] [000013504]: Local user framerate is [135.379684] +(I) [20:25:05.003] [000013504]: Local user MinDelay=[29ms], MaxDelay=[67ms], AvgDelay=[43ms], minRTT[36ms], maxRTT[157ms], avgRTT[72ms] +(I) [20:25:06.739] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1005ffcdb7c7f6ed9231a1e2f01177bd4fa84e5d85508a8f66b94da28ccf3d95 +(I) [20:25:14.548] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=24ef6873f63c194e2cdb6ba5532c1d86e7fd0853c186014dda2970e3cf7d5572 +(I) [20:25:15.011] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:25:15.025] [000013504]: GetPartyStatsByID found 1 teams for user ID 16432 +(I) [20:25:15.354] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1e0ccfe2cd926d88b05e179811143b1139455374de426e209a90708470848945 +(I) [20:25:19.402] [000023384]: Read bytes [0,"ChallengeUpdatedMessage",16432,[[8912937,1528297,0,6,1680998400,null],0]] +(I) [20:25:21.002] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=202/0, mdat=464/928, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=29/8, lb_c=0/0, cast=0/0, cdat=180/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:25:21.542] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=936b569e0dd57f6961ffd5bf3f3b7eb9f438b5a0f9dd6836286bae10462c2ce6 +(I) [20:25:24.004] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=13/0, mdat=24/48, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=1/0, lb_c=0/0, cast=0/0, cdat=11/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:25:25.019] [000023384]: Read bytes [0,"ChallengeUpdatedMessage",16432,[[8912937,1528297,0,7,1680998400,null],0]] +(I) [20:25:25.679] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a53e79add5e16b977a732fe5c4c655767e4c8afcfcc3da318a488a47afcd1a17 +(I) [20:25:26.004] [000013504]: Local user framerate is [136.209137] +(I) [20:25:26.004] [000013504]: Local user MinDelay=[1ms], MaxDelay=[67ms], AvgDelay=[43ms], minRTT[33ms], maxRTT[157ms], avgRTT[73ms] +(I) [20:25:27.685] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3bab1f991f39895983197cb909e03bc6660210668f01de68473d6b9203495ec6 +(I) [20:25:30.095] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d7c4345b93d21d6cf78d455fcb42e60e8c7c29e380fc39b27479997168b0ce28 +(I) [20:25:32.108] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b945f404e0a161bd1e42a78083d0baa0624e7a84d71a68b1ee04547846ab35d1 +(I) [20:25:39.380] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a1cfbafda188c3864710bdfc6419796dc3f37bda65009845223714b8061d9f35 +(I) [20:25:47.002] [000013504]: Local user framerate is [133.143341] +(I) [20:25:47.002] [000013504]: Local user MinDelay=[32ms], MaxDelay=[69ms], AvgDelay=[42ms], minRTT[44ms], maxRTT[142ms], avgRTT[71ms] +(I) [20:25:47.880] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=efc24eb5e4b57a2b6edde97fe2f8aa521958016a315caa69351617c00b26dd9a +(I) [20:25:50.781] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9716a605029557a7dc0f3ffb7e13c70c2660a88dcee973f76a6ab59aef35fbf8 +(I) [20:25:57.637] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ee8004dc553c6dc2878a60dfd2a0458c5a27567f5ba363b0e8014c1baddc298a +(I) [20:26:02.842] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=725177cf6f4c1b069b31a7fd611a9c68e226d6defb37f09cb422be08c8a4bee3 +(I) [20:26:06.065] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5fd2e4602cf0615c66be3f1e4c8a4d0cd4916e849c53bea7dee22a0d8bb2386e +(I) [20:26:08.009] [000013504]: Local user framerate is [135.166199] +(I) [20:26:08.009] [000013504]: Local user MinDelay=[29ms], MaxDelay=[69ms], AvgDelay=[43ms], minRTT[29ms], maxRTT[161ms], avgRTT[75ms] +(I) [20:26:12.406] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6749ffbbd4e40573e7db1b6abb14a6be99e6698004dc2ab1d9495ff67028156d +(I) [20:26:13.194] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=64fb0d2587c0b281b7dcf147815a1179d9416cd6201152013becad27ab477575 +(I) [20:26:19.903] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3f66f54121f5ba707a6ccf0cb3dee2d7cfa1788c3897841684ae39d3627f3f2d +(I) [20:26:22.004] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=249/0, mdat=464/928, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=30/8, lb_c=0/0, cast=0/0, cdat=220/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:26:25.010] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=15/0, mdat=24/48, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=2/1, lb_c=0/0, cast=0/0, cdat=12/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:26:26.523] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b8293f11b4bcbfe32a2ea8a0db5b5496ce9b76607b0773da882b81e55e1dd5d2 +(I) [20:26:29.009] [000013504]: Local user framerate is [133.550003] +(I) [20:26:29.009] [000013504]: Local user MinDelay=[29ms], MaxDelay=[70ms], AvgDelay=[44ms], minRTT[29ms], maxRTT[161ms], avgRTT[73ms] +(I) [20:26:33.054] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=50b468e3dde4ac9ce168ef7d0dd5f3ea965aa442ce106e5ef61f1b5a5ef17cb1 +(I) [20:26:36.715] [000013504]: Sent match chat message { MORE RNG NOOB } +(I) [20:26:37.210] [000013504]: Response received after sending match chat message { MORE RNG NOOB } +(I) [20:26:48.340] [000023384]: Read bytes [0,"MatchReceivedChatMessage",16432,[80459,":(",":(",2,5805364]] +(I) [20:26:48.342] [000013504]: Received chat message { :( } +(I) [20:26:48.342] [000013504]: Starting FilterChatJob for message { :( } +(I) [20:26:48.372] [000013504]: Posting chat event from FilterChatJob for message { :( } +(I) [20:26:48.537] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.537] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.537] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.537] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.537] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.537] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.537] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.537] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.537] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.537] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.537] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.537] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.537] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.537] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.537] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.537] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.537] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.537] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.537] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.537] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.537] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.537] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.537] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.537] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.537] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.537] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.537] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.537] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.537] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.898] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.898] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.898] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.898] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.898] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.898] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.898] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.898] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.898] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.898] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.898] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.898] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.898] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.898] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.898] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.898] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.898] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.898] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.898] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.898] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.898] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.898] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.898] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.898] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.898] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.898] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:48.898] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:26:49.402] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5e6477e3b90ee80ab1e5fdade4d29c85a68c29d8157f716ad0f3b20614a7cde8 +(I) [20:26:50.002] [000013504]: Local user framerate is [136.736328] +(I) [20:26:50.002] [000013504]: Local user MinDelay=[36ms], MaxDelay=[55ms], AvgDelay=[45ms], minRTT[29ms], maxRTT[151ms], avgRTT[73ms] +(I) [20:26:58.900] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8e8fb164eccd0b23b8e19d0eb17a8472b70541fb9e37a6169902da25ac3d82a6 +(I) [20:27:03.662] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=66b877b9ad1f6bec2b0ae22dd22e5a2a3303f8768905e4c47ef517891b8bf66c +(I) [20:27:11.004] [000013504]: Local user framerate is [135.666077] +(I) [20:27:11.004] [000013504]: Local user MinDelay=[29ms], MaxDelay=[57ms], AvgDelay=[44ms], minRTT[28ms], maxRTT[151ms], avgRTT[75ms] +(I) [20:27:12.580] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=dfdbfdc0c558bf88d4f35e01218a2adf47d8cc2de4d0dd6db0857d8119466330 +(I) [20:27:17.388] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a6c7f9340a494415888eb0f4993b949992db33002cbc272ed0018dc7a513b20c +(I) [20:27:17.892] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6df3b80e9f4b538a7804d84fd5271fcee7d2591075a42966ce3039d47939f23e +(I) [20:27:23.005] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=222/0, mdat=464/928, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=28/7, lb_c=0/0, cast=0/0, cdat=205/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:27:23.734] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1588b41a89ab3550c98b32e28404eb394f80529443273ee7b5a57b05dcb6e9a6 +(I) [20:27:26.001] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=10/0, mdat=24/48, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=2/1, lb_c=0/0, cast=0/0, cdat=8/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:27:31.548] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e714c8c0ce7d4ec9bdfb9da89cfc26d27083907b05cfb46ac72f2e4c4bc04e9a +(I) [20:27:32.001] [000013504]: Local user framerate is [138.108566] +(I) [20:27:32.002] [000013504]: Local user MinDelay=[29ms], MaxDelay=[61ms], AvgDelay=[44ms], minRTT[23ms], maxRTT[157ms], avgRTT[76ms] +(I) [20:27:43.911] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9ca51607c335e5d9072a51b4bd2ec37585ee886e7424bdddc923ea7f3b04368b +(I) [20:27:53.006] [000013504]: Local user framerate is [134.053070] +(I) [20:27:53.006] [000013504]: Local user MinDelay=[31ms], MaxDelay=[51ms], AvgDelay=[41ms], minRTT[34ms], maxRTT[148ms], avgRTT[73ms] +(I) [20:27:53.571] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c1b07487c7a7dd251250ce22f87947c95a4319d6efb8e3353b9c96123648a378 +(I) [20:27:54.045] [000023384]: Read bytes [0,"ChallengeUpdatedMessage",16432,[[8912937,1528297,0,8,1680998400,null],0]] +(I) [20:28:03.239] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a00680a3f8f8a6d0795ea9f8601c441954ba31ec570111091439787f1c05ee2b +(I) [20:28:09.613] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=db42dcc6d2a76f11a03654419d520b9002969847ffa96fd70a71bb31376f10a9 +(I) [20:28:14.005] [000013504]: Local user framerate is [132.173553] +(I) [20:28:14.005] [000013504]: Local user MinDelay=[28ms], MaxDelay=[59ms], AvgDelay=[41ms], minRTT[23ms], maxRTT[159ms], avgRTT[75ms] +(I) [20:28:15.341] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6560acd19bfdb2fce4edf16cc37c9b3280cedff1714b8888bac7c863563e1eaf +(I) [20:28:17.972] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=23aec5756084065a9b1abc9e14935859684badc718b3cb6933756d797e3a9d5b +(I) [20:28:20.744] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8c2ce063e1924d26b7d1008b02334cb5d85ffac634613038946d04e89b91c931 +(I) [20:28:24.000] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=240/0, mdat=463/926, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=28/7, lb_c=0/0, cast=0/0, cdat=210/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:28:26.214] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3db5768ca632b2800969568b8206bd4cb28d0c6d6513b7f72f4d375214683f29 +(I) [20:28:27.007] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=16/0, mdat=25/50, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=2/1, lb_c=0/0, cast=0/0, cdat=15/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:28:31.442] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=180f4d30da37e7b5cce019d83a13e9ef043948f34081739c5c8ffa0f65747019 +(I) [20:28:34.393] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=41f59bbcc2e8f99df0ad265ee6baae433a2a7c3c0a139e0aede13d912405049e +(I) [20:28:35.005] [000013504]: Local user framerate is [127.668076] +(I) [20:28:35.005] [000013504]: Local user MinDelay=[39ms], MaxDelay=[55ms], AvgDelay=[46ms], minRTT[58ms], maxRTT[133ms], avgRTT[74ms] +(I) [20:28:43.630] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cc95926786b5d2a6f6222f01fc979382e1ba0588f02438fb0f166202c908959f +(I) [20:28:56.005] [000013504]: Local user framerate is [133.936600] +(I) [20:28:56.005] [000013504]: Local user MinDelay=[36ms], MaxDelay=[58ms], AvgDelay=[46ms], minRTT[32ms], maxRTT[142ms], avgRTT[70ms] +(I) [20:28:57.197] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ccfe64d2fae9f91b3900e40d036d27fe7c885bf8bde7da64c444f4a33e223283 +(I) [20:28:59.005] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1184caa2a9050bab79d7dcb8aa64f47988a8db4afe5607bad310699850a2a9e4 +(I) [20:29:04.786] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5d46c3dc1da4933502f28df08055a570a0c22047c5064c28420bd3d280f44bb3 +(I) [20:29:11.148] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=150d2baa3e1cf159d29cf406bf7df005055a3b04ce6dd0b014a74c3e53b8e3ca +(I) [20:29:17.002] [000013504]: Local user framerate is [136.672653] +(I) [20:29:17.002] [000013504]: Local user MinDelay=[15ms], MaxDelay=[58ms], AvgDelay=[45ms], minRTT[32ms], maxRTT[153ms], avgRTT[74ms] +(I) [20:29:18.454] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2b5f3f12fa33c63172fccf2f00614b5f72ac433ab6999c9891f13677fd316ce9 +(I) [20:29:25.004] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=226/0, mdat=463/926, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=30/8, lb_c=0/0, cast=0/0, cdat=203/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:29:28.009] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=12/0, mdat=24/48, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=1/0, lb_c=0/0, cast=0/0, cdat=9/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:29:29.881] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=86d809df68ffcc4971c6429c403c453dfbccd8aed42a2f45b6b4fa63c6936bc7 +(I) [20:29:37.163] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=bc0c13390e78039cb071da727d0a78e5f8e5d8626b03d39f672b65883d05554a +(I) [20:29:38.009] [000013504]: Local user framerate is [136.565857] +(I) [20:29:38.009] [000013504]: Local user MinDelay=[36ms], MaxDelay=[50ms], AvgDelay=[43ms], minRTT[36ms], maxRTT[163ms], avgRTT[75ms] +(I) [20:29:46.528] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6aaa1d3499d32e8e55116e4fb52954e8dcb3f59df403fc5d5b7b2f1769a6909d +(I) [20:29:52.374] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=528e6b9b6fd83801168d59d28c64d6dbb64deecb3fafcbb30d5ea894ff8f9c69 +(I) [20:29:59.003] [000013504]: Local user framerate is [136.658997] +(I) [20:29:59.003] [000013504]: Local user MinDelay=[35ms], MaxDelay=[75ms], AvgDelay=[45ms], minRTT[36ms], maxRTT[163ms], avgRTT[73ms] +(I) [20:30:05.534] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2c15a972064f5e4c9acf6166b300e8724b9a1ec0854ae3fe0ab3d33222bd16bf +(I) [20:30:15.963] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=92c802f07b2e399e298d2b129e01583dc4074e721c5bd8eb7842695d68871884 +(I) [20:30:20.002] [000013504]: Local user framerate is [136.586334] +(I) [20:30:20.002] [000013504]: Local user MinDelay=[28ms], MaxDelay=[75ms], AvgDelay=[45ms], minRTT[29ms], maxRTT[163ms], avgRTT[72ms] +(I) [20:30:26.001] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=247/0, mdat=464/928, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=29/8, lb_c=0/0, cast=0/0, cdat=223/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:30:26.265] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d6de6e948ca4980d9038b510f4e00f4bd5b30d931ab858fe4484cb6af0236989 +(I) [20:30:29.004] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=8/0, mdat=24/48, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=1/0, lb_c=0/0, cast=0/0, cdat=8/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:30:30.421] [000023384]: Read bytes [0,"PresenceMessage",16432,[[1013,53758,"/steam/76561198010453859","","Seek & Destroy","",33285,1281,1281,2074389,null,"76561198010453859",3,[],1409814,"Parcourt les parties",[[1409823,""]]]]] +(I) [20:30:30.421] [000023384]: Read bytes [0,"MatchHostedMessage",16432,[[5807678,109775243168168365,"","0",53758,0,"unnamed_session","unnamed_session",1,"rural_town_2p_mkii","eNqlU01vnDAQ7W/xtZHKwn6xUg5sadNV0wSF3KoKec1ARgs2MiaURvz32oZl2ao9lYPFe29m/Dwev5EyKWn13FVAds6NRi3yj4KnqFDwr9CRnecttt7G32wXRs5pCSFmGbKmUFq1JHsBquoR6HKxolLdC0ZNkXosbDLjCiAlO/fPjR6rMfJNC8KCGNjE1cN/Upu6yPNEQi0aycCqQ/ycc/qbKUchO4GaB07MynH6vjde6BELVN1gY/TbcFTXRJVLmsIVJylPRRnbUy18z1u7a3flG6UQepf0nIrm1J7rOZuFNzRJsRfbXkImrNuRYf65oLk2527XRqgLoa54EuVBEIRLvezf6yXIDP7ynzi4vb34iHQrQUX7u4N2TT6Yr5306kHfo6ZlI2mRKNHyxK2S8oRoAwragXy2Tr//GDPugMf4SyctXX/przeuv7oo97QTjfq7tkdR/iMtshvZQZsNnhaeZjfiXOjHV5ASUxh6GVJFh2FL7R8h/cwrA04liuFR2NK0KEQ7bPnppwJe6wmIKDvVc/0JqoIyKIGruVaK1MCrER85g/pZTAgV8BQ4Q7D9s5ou2mX0eOCvqOAQnidmpB9AtULqzJqdFaxDODb5N3OV5i28+w0wtE3a",0,16,"eNrtVttyo0YQzbfoWZsaBrNrXLUPlgUIVhqZ68Ck8sDNATFgYiEklMq/ZxikFfbGlUrV5mEreqDm1pruPuf0tAQ4/eWPSf3y/JTTVK+enn/Ok8mdJH6SbqeTbRM2+XOlzyd3wnTSpGHZT8F08hTG5wM4nbyEccqnQLyV+LoqlmmbUm7br1ZhE2dOV3OzD/1deZk+pi/qS1imK5vb5VsrDZOOz3vHuy2flmkTzsMmnNxN0s5ofEh3FlQbYusfVw/7PPLkOqoIjSqrjStqE6wW6eVsH2mqRHzj7X4XYKmIoOAkmtol6qyNIQUhlnf65nm/fGB+RAQC32B7UuVq8jH0rTqCN/k6Bwd+DoWWqLMsgM1jvOjPpKO+qT/ppfAUYblwNXUTiqt8XTXyG3uF+DMalRb7UE18ZkOb5MnmcTURtMwAoxerPGSk//3mfvvqTmC1CZS2EVQLd2G0RDRoPNjtVvP7ff8N/iRKsEWJwvwu0DwSvV3y8DX/HcFewc4R83e0NFmMykMb9PbMZukoEG1+g8hZHdn4xj/D3ze6SNRZbtsBf5ZLqoz2v8XIiAqvi0u5Y/jmpqvO3v0cIOsV4D4DTE3G3ZFhm0UaBT1/eq6fz1Y9BiwvwO4Eq00B1k4gslEYfCPGqUATjW4ccca5jTv9I9eQOMsYr8CF6Jlggdqu+TWXPn801yU0LyA6snHgBaSMs14bJ572zP+O6aYLsZDFVcFy1ttld9suxVh+tIcYY01l2rQcglHLMPonOzcuadPjw887WXx0QD5ocYjX07yO5fPuPUGpFgR6Zn8P06709q5T7IDVQmPiwzbE6i6A7t/f5RtN6qp5iA8180l77LAALmeet2fay4jm9bqPhtq0skRT2H3GnABPDQq5uHDLNFUm5Ly2FW8WUD5fpKVkXewEcawHtCEVPq+9e9EtRlrxXmvHAnzUWS2HWDFgIFIDFfR3k2nFBPU2OBo3SWnNbYcYYaHWhBpOciw65/T7oPJG8ZoDJqcvVYSRL4XvkSo5a3bgidVGUrI60+QudSnDWXAiTQYDdoK8XHCNFYFvZbwOYKJa2GA1OsrXGeXrZqqJDY6NdUQ795IrSsC4ZlxIBHpem0gwxrhYr2tsiNleoBrT7CEpkTTg4dWOgr5E2qpLF6QwQQFtXKshJrYrxtKqOOWPDWEUrzLGaClmaOyL70Fy4lOR9Zzrzxi910aieY0LD22yOL+DB/6GEk0FQV/vBWKV4eVfoDXK1xznq1tMpwM2cRvRi3/HT8acgbH+3Hlij2N1X79DixP+x9CrA7Mim9TleBihe5jb5WGzqjJIFMT1ZWNauhSJa8c4558n+BKv9TDCqJNvnLEvm++VZz7P9WdjCRJW85FoSLbPeoWHtpFo8VrzfSEZ3ji1i3zqRSUF4/okmrxmtvapx9VpyWp8M5Pv7z9/nvw5/bbd9x151Os/jJq98KrZC5dmD/67Pv+vYwQACO/9KfmucQrfOU7wg8Qp/CBxXnm/8n7l/cr7lfcr7/8n3n/96S+sh6TV",0,[[5807678,53758,-1,33285,203852,0,"/10.0.70.173"]],0,512,0,180,0,0,null,"europe",null]]] +(I) [20:30:30.425] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.614] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.614] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.614] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.614] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.614] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.614] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.614] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.614] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.614] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.614] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.614] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.614] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.614] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.614] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.614] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.614] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.614] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.614] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.614] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.614] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.614] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.614] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.614] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.614] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.614] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.614] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.614] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.614] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.614] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.979] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.979] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.979] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.979] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.979] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.979] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.979] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.979] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.979] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.979] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.979] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.979] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.979] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.979] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.979] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.979] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.979] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.979] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.979] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.979] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.979] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.979] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.979] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.979] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.979] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.979] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:30.979] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:39.196] [000023384]: Read bytes [0,"PresenceMessage",16432,[[1014,53758,"/steam/76561198010453859","","Seek & Destroy","",33285,1281,1281,2074389,null,"76561198010453859",3,[],1526767,"Dans l'accueil de la partie personnalisée",[[1409823,"5807678"]]]]] +(I) [20:30:39.200] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:30:41.004] [000013504]: Local user framerate is [137.793106] +(I) [20:30:41.004] [000013504]: Local user MinDelay=[35ms], MaxDelay=[51ms], AvgDelay=[44ms], minRTT[33ms], maxRTT[143ms], avgRTT[71ms] +(I) [20:30:43.132] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6bb83790d1550594dcc95390f2a5ab7bfd2839db3ac6733a687364a00de30f75 +(I) [20:30:51.281] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a1ab5177082303473a8cdd48b0b782fae917692f78f20dabf701061c8115bfdc +(I) [20:31:01.820] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=99e129663ec18a9111d9ae2f24b5a7cd2073242bd5fa17a6ed618c1e77b1a1fc +(I) [20:31:02.011] [000013504]: Local user framerate is [139.622070] +(I) [20:31:02.011] [000013504]: Local user MinDelay=[34ms], MaxDelay=[55ms], AvgDelay=[43ms], minRTT[27ms], maxRTT[161ms], avgRTT[74ms] +(I) [20:31:07.186] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4b30bf5781e0a915f42909aa00eed61d20558c4531c564c117bd8f0f664c2eee +(I) [20:31:19.952] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c09e833786a22ea82662580882b90d4549ddb2da97730406985c960e9e956066 +(I) [20:31:23.001] [000013504]: Local user framerate is [140.399994] +(I) [20:31:23.001] [000013504]: Local user MinDelay=[34ms], MaxDelay=[58ms], AvgDelay=[44ms], minRTT[27ms], maxRTT[161ms], avgRTT[74ms] +(I) [20:31:27.007] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=236/0, mdat=464/928, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=29/8, lb_c=0/0, cast=0/0, cdat=222/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:31:30.001] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=13/0, mdat=24/48, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=1/0, lb_c=0/0, cast=0/0, cdat=11/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:31:32.501] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=63826dae47efbdd90477f5fa98269868db116c981d46c6bc7ffac1fe522e4255 +(I) [20:31:40.110] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=97a87b53de1dfa835582eadcac028b5509f1d7921d063d094f08fb07053090a8 +(I) [20:31:41.232] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:31:41.251] [000013504]: GetPartyStatsByID found 1 teams for user ID 16432 +(I) [20:31:44.001] [000013504]: Local user framerate is [137.422501] +(I) [20:31:44.001] [000013504]: Local user MinDelay=[36ms], MaxDelay=[58ms], AvgDelay=[46ms], minRTT[30ms], maxRTT[148ms], avgRTT[71ms] +(I) [20:31:45.450] [000023384]: Read bytes [0,"ChallengeUpdatedMessage",16432,[[8912937,1528297,0,9,1680998400,null],0]] +(I) [20:31:48.866] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5d72371954467bd5870058979519e48d8a27b812b64431de4dd03479a375c3e9 +(I) [20:31:52.763] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b2e1e15ba9f7ecab3d8ea7ca414a9d1710a8acb690dad45ee88f8493b38d258b +(I) [20:31:55.328] [000023384]: Read bytes [0,"ChallengeUpdatedMessage",16432,[[8912937,1528297,0,11,1680998400,null],0]] +(I) [20:31:55.983] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fcbb04de099d4f5a6c34c865873e0046fc0be5257d91b948a203035c17150758 +(I) [20:32:00.513] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=74c58bc4f5dd34d87587cfaa50af2b31ccf5442a0186f23d66a9045c2cb18116 +(I) [20:32:03.495] [000023384]: Read bytes [0,"ChallengeUpdatedMessage",16432,[[8912937,1528297,0,12,1680998400,null],0]] +(I) [20:32:05.002] [000013504]: Local user framerate is [132.164093] +(I) [20:32:05.002] [000013504]: Local user MinDelay=[36ms], MaxDelay=[60ms], AvgDelay=[47ms], minRTT[23ms], maxRTT[154ms], avgRTT[70ms] +(I) [20:32:09.930] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f6bb08e4983e860f5f2021849354e16a771a44fdbdfc22c9a058cb29fbd816a3 +(I) [20:32:19.510] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=200f5f50d4fda0f8f50345d9e2a398ded72e8dcb6c74ecae895e1ebc09fa34b9 +(I) [20:32:26.005] [000013504]: Local user framerate is [131.453979] +(I) [20:32:26.005] [000013504]: Local user MinDelay=[1ms], MaxDelay=[62ms], AvgDelay=[46ms], minRTT[23ms], maxRTT[154ms], avgRTT[72ms] +(I) [20:32:27.943] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ba85ac018ef791df90368d0783e142f7bec84330a7d6ebb976d3afec10405538 +(I) [20:32:28.006] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=240/0, mdat=464/928, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=30/8, lb_c=0/0, cast=0/0, cdat=207/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:32:31.009] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=13/0, mdat=24/48, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=1/0, lb_c=0/0, cast=0/0, cdat=12/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:32:31.218] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c8bd75f86900984cadefe8947af7bf276cb4cb89295767e730f53b307438bf63 +(I) [20:32:33.191] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7ba988c8a524b936aa1470751ec35ab067d6879c4ea883648e4776d34b4e38ee +(I) [20:32:35.769] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=64182ad89b3a067c7d123f376b83efcd27cbc7eeb5b99422870283a8f2d656e4 +(I) [20:32:37.009] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0ea7ce65132ca3d58a8dcbd3962901c66907bb36fd015c0615dd17f142a77546 +(I) [20:32:41.445] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f9043ec2110bc97593ca7f2aebe54d6e7e63a9b8c9df64131e3fd594246b118b +(I) [20:32:47.000] [000013504]: Local user framerate is [132.800003] +(I) [20:32:47.000] [000013504]: Local user MinDelay=[35ms], MaxDelay=[54ms], AvgDelay=[42ms], minRTT[29ms], maxRTT[154ms], avgRTT[80ms] +(I) [20:32:47.411] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a3319173c603f57f2c3f24878f8a15f0086ed72ff892bb8979cc0f6fe6aed20a +(I) [20:32:56.870] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c0eba7351567595c28f5b87b8ccd2ccdeef0395dc2706f07fe760ddf1d703e12 +(I) [20:33:08.005] [000013504]: Local user framerate is [134.986496] +(I) [20:33:08.005] [000013504]: Local user MinDelay=[31ms], MaxDelay=[54ms], AvgDelay=[43ms], minRTT[29ms], maxRTT[154ms], avgRTT[75ms] +(I) [20:33:09.508] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=515c22e69e2ab864ffe021463ebc423f34be45fcb49d00901d91081294c0cc16 +(I) [20:33:10.957] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=760e116828d0351596d2186e984c98f9abaecf43b0d81740ee2c90c0d3dd66a9 +(I) [20:33:17.687] [000013504]: Unable to bind DCA updater for fx_attach [fx_particlesystems\fx_damage\fx_vehicle\vehicle_smoke_light] with DCA Context [data:art\armies\british\weapons\6_pounder\6_pounder]. It could be looping in a fire-n-forget action. +(I) [20:33:22.043] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0800e9dabf73f8b19aeeb5f7cfbbbf25735b389a94cbaa53158a506b0421c282 +(I) [20:33:25.868] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=dc8523e0ef2b84201953ec94beeb5f4bd56bb790b469f78ddf388db3cf902ecf +(I) [20:33:29.001] [000013504]: Local user framerate is [132.536743] +(I) [20:33:29.001] [000013504]: Local user MinDelay=[22ms], MaxDelay=[58ms], AvgDelay=[42ms], minRTT[29ms], maxRTT[155ms], avgRTT[75ms] +(I) [20:33:29.006] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=239/0, mdat=463/926, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=29/8, lb_c=0/0, cast=0/0, cdat=222/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:33:31.923] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3b00cc987cc82742516ca6aca47a74506de8597e3656f6ff388baca54889b7bb +(I) [20:33:32.009] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=7/0, mdat=24/48, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=1/0, lb_c=0/0, cast=0/0, cdat=6/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:33:34.863] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3c190920da358754e0ad7e94a3bf1afff7bc105b3f6d70fc5bf8a5ec37886e0c +(I) [20:33:39.376] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=729b61ea058c0f381a33286fb379c353e54bba0bc49334ce26d833ea63e6382f +(I) [20:33:43.979] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1947c8c88fe7cd28be083dc6262f455670892179d04a2807888d71b225015f7c +(I) [20:33:49.252] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ae176850fc22e1f546db0f009698728b5012f3ce91e4ca4bd0d765a0dd22670b +(I) [20:33:50.006] [000013504]: Local user framerate is [134.823029] +(I) [20:33:50.006] [000013504]: Local user MinDelay=[36ms], MaxDelay=[56ms], AvgDelay=[46ms], minRTT[32ms], maxRTT[157ms], avgRTT[72ms] +(I) [20:33:57.716] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=05aad69eae4cf184a9dbd7f2d5c48b7c7d0b64b43361031f45f83a85cc92d303 +(I) [20:34:02.902] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=24b76a846bf3512cee6441dd4f59f2db1a64700f24ac591767e09c4598498131 +(I) [20:34:11.006] [000013504]: Local user framerate is [135.050003] +(I) [20:34:11.006] [000013504]: Local user MinDelay=[10ms], MaxDelay=[62ms], AvgDelay=[47ms], minRTT[32ms], maxRTT[160ms], avgRTT[73ms] +(I) [20:34:11.592] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=27653b4145dc9ee9ec62a97bcc5953a13926cd242362e5b96e40b9e2115722f1 +(I) [20:34:13.807] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9d814381807a13dedfe60250ca17698dcec1187b2e622fc55a23cd9d057604f9 +(I) [20:34:14.991] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=195de4749cabd6ba4c062b83b083b75bea9119e1960daebf193074da023ae29e +(I) [20:34:22.975] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9766ceaff09c3ff8638a10c9371ad8e587597778c4b4b39a6cfa1407723f04e3 +(I) [20:34:30.004] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=203/0, mdat=464/928, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=29/8, lb_c=0/0, cast=0/0, cdat=184/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:34:30.587] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=63a498cce111e536037f30062a95143782689ccd6c055dd1cb5ce83a558c1da4 +(I) [20:34:32.006] [000013504]: Local user framerate is [131.486847] +(I) [20:34:32.006] [000013504]: Local user MinDelay=[10ms], MaxDelay=[69ms], AvgDelay=[47ms], minRTT[24ms], maxRTT[160ms], avgRTT[74ms] +(I) [20:34:33.003] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=10/0, mdat=24/48, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=1/0, lb_c=0/0, cast=0/0, cdat=8/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:34:37.404] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=27e982c2c5bd5da6269038c5f2239371150ab9fa62d915a011a9bc80685ffb14 +(I) [20:34:48.384] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cd276056207c1dc80152643d54998cf2a7c31f7c0f0ec20f3666742adfcfd18e +(I) [20:34:53.001] [000013504]: Local user framerate is [134.573074] +(I) [20:34:53.001] [000013504]: Local user MinDelay=[1ms], MaxDelay=[57ms], AvgDelay=[44ms], minRTT[22ms], maxRTT[153ms], avgRTT[70ms] +(I) [20:34:54.300] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=eda8637a86a0becf13e67167c9431173b24cc5ecfc5cf037ed497ad7fd9d8c6c +(I) [20:34:59.258] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cb4f1b479f537a6fdda6730bcdca552d0ba5acf42342ffdbddebbb73b452c0c5 +(I) [20:35:01.146] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5015ffd19c8728e3c5b0740ab386b5c82824a1d266a8f76b0f7c3410ffeb2b4a +(I) [20:35:05.022] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0666e2b952ebf030eab938a24cdf59c111c6abd5e3db8fdb477215bf6b7b6778 +(I) [20:35:05.528] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d8a79145f0c999d38d6acc89125e380df69feb177d4e76756fcb4a62b0e36a7b +(I) [20:35:08.890] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5f9b1d6f38685e695995649ad6d0126ea6b81cee927e0eb5013aee6f0e02c05b +(I) [20:35:11.145] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=dc4bc9cda9ae8b36ab7418d97870e69fe54c1c28303545339438a70bceba63f2 +(I) [20:35:14.009] [000013504]: Local user framerate is [129.850006] +(I) [20:35:14.009] [000013504]: Local user MinDelay=[1ms], MaxDelay=[59ms], AvgDelay=[44ms], minRTT[22ms], maxRTT[153ms], avgRTT[71ms] +(I) [20:35:14.276] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3fbea3af6a3d51810af63b65d8c55a9c8adcb89ca603ecd7458f4358c0e0c9c9 +(I) [20:35:17.904] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5973ad79d99b2503a88f4415e04710b5d41f670848ab591475164bce413bae58 +(I) [20:35:24.326] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=bf45872fe0d197f3989fcf8d606f8ffbc43c1ed6f01e54d371b4d006a4796542 +(I) [20:35:27.670] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6e4e314dfdfe3efc7824b7dd02a9b6862c9bebedda14e60b42c206d4b1d222a0 +(I) [20:35:31.007] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=242/0, mdat=464/928, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=30/8, lb_c=0/0, cast=0/0, cdat=216/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:35:32.045] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1b7ac89ead5732805856b3bf8b429b5973cfd3b48fd9146b7c9f0fbb44f9be59 +(I) [20:35:34.007] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=13/0, mdat=24/48, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=1/0, lb_c=0/0, cast=0/0, cdat=12/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:35:35.012] [000013504]: Local user framerate is [135.286469] +(I) [20:35:35.012] [000013504]: Local user MinDelay=[37ms], MaxDelay=[52ms], AvgDelay=[45ms], minRTT[26ms], maxRTT[150ms], avgRTT[75ms] +(I) [20:35:37.106] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=999cb5b48444b78510a920b0fbe2856aacff83059a1341db65ff98176724e627 +(I) [20:35:40.370] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c97a411cca72722389e1789f8165ba0e60151ba425d2f65c3393bd6e1bdb3946 +(I) [20:35:40.963] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=323e24c50a33ed042293d45e81df1e3638aecce721d3e8bde372f7b3012e78ab +(I) [20:35:46.782] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=49e1306560c09dc0dec5ff7a825d66cb56996cd231f4f6e0a9d3b002037a38dc +(I) [20:35:47.553] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d223e92332327ccc33d17d6277f5b5291a7fcc5248960c25b33b3ab37700e3b4 +(I) [20:35:49.199] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c2b6952b10cda9fdef421260356479ef682532cb4d917172f0d90b7583bc109e +(I) [20:35:51.972] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=df2f409b0ed97aef6dc6f10fb727d4eef42bb86e458f38c9572bdd7344116e88 +(I) [20:35:53.280] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7e3ed386c5431831df43814155162ca982aa91f38eabed56b94405c4dfa08c1c +(I) [20:35:56.003] [000013504]: Local user framerate is [136.536346] +(I) [20:35:56.003] [000013504]: Local user MinDelay=[36ms], MaxDelay=[65ms], AvgDelay=[46ms], minRTT[26ms], maxRTT[153ms], avgRTT[75ms] +(I) [20:35:56.562] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cd6691b764618b6be0dedb1f785d21e1f6d391a043c8fc3b951115d6dff4f8ea +(I) [20:36:10.628] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cac7809fe57f13bbe358af198a276e5cc2b98d1efac2c438732299f987a3f36c +(I) [20:36:17.004] [000013504]: Local user framerate is [136.750000] +(I) [20:36:17.004] [000013504]: Local user MinDelay=[22ms], MaxDelay=[65ms], AvgDelay=[44ms], minRTT[26ms], maxRTT[153ms], avgRTT[74ms] +(I) [20:36:17.424] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7ed89d1bbffa1408894f892387cdb131376d5f0d99c7c9b75be65646b3de3ec8 +(I) [20:36:19.423] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e6abaa716a49f0893f7b7f39c96dbfa16bb8f87d1a169c73d9769459d2727cf2 +(I) [20:36:25.205] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=36f7725e655e7a51181dac908ef3e8f91ed9f2d8b559aa6bb7caa4f0e05f1280 +(I) [20:36:32.008] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=213/0, mdat=464/928, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=29/8, lb_c=0/0, cast=0/0, cdat=194/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:36:35.000] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=7/0, mdat=24/48, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=1/0, lb_c=0/0, cast=0/0, cdat=6/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:36:36.935] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=847d0437f2de13fc3b54378fb11f69bede87f2cd598be4e154a202a98cfa8030 +(I) [20:36:37.759] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f3f7b1da62a7e89c899f3b6c3be1a276fcbd2625c4e6cdbc62212bf0b62a7f1a +(I) [20:36:38.004] [000013504]: Local user framerate is [134.662460] +(I) [20:36:38.004] [000013504]: Local user MinDelay=[36ms], MaxDelay=[57ms], AvgDelay=[46ms], minRTT[54ms], maxRTT[122ms], avgRTT[80ms] +(I) [20:36:38.262] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=39d0987682d1753d53c780401ae4fd8ecd81508e1a91817c017be4d18b39a879 +(I) [20:36:38.813] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8319b21db606b8fc09c84bd762c51df98d3c826dbdbedf473e9321a384a339e7 +(I) [20:36:40.463] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4818b6e0ec92291ab1c782c57e993753c9831a5a7f3d664a67ba0610df2e2815 +(I) [20:36:40.965] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0482736f4e31411c8410402efe872d8a39f6486f929d4641cd729745efc5927c +(I) [20:36:47.125] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d4c7aea20922a89462b5e09aa103657641129062f5f7a5dd5f7ee18066d776f3 +(I) [20:36:48.011] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=185b401cc324ffa988873409ee3a2dda4cba360d3f65144cd6dda7cceb7e9ee6 +(I) [20:36:52.352] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ac428ec31751335c5222bd6035c83f3116c66961765f40fea0c85713cc9dd0d6 +(I) [20:36:59.006] [000013504]: Local user framerate is [134.236572] +(I) [20:36:59.006] [000013504]: Local user MinDelay=[29ms], MaxDelay=[97ms], AvgDelay=[46ms], minRTT[38ms], maxRTT[161ms], avgRTT[78ms] +(I) [20:37:04.430] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2f17e440aca6ce7413cce47262fb4d6c3832d539b523230d0321248bc846c65d +(I) [20:37:06.124] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c5fd644dca0862f8cf011467142d3f14ecb9b5dd5e7716c19f86bd12d8413e17 +(I) [20:37:11.769] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8bd33c3fbf10d9550a9144adbb50902e0e2830c2d102c37019883ae12bac80c2 +(I) [20:37:19.885] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e44d597eaf85ccbf0ba3627e34ef276cc64a735fafc5ee3784100d488484245f +(I) [20:37:20.006] [000013504]: Local user framerate is [137.772430] +(I) [20:37:20.006] [000013504]: Local user MinDelay=[15ms], MaxDelay=[97ms], AvgDelay=[45ms], minRTT[38ms], maxRTT[161ms], avgRTT[77ms] +(I) [20:37:30.391] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5ddeb9681f27d6c9f714081251e98ac9bb4fda014cacb54f780e93b526cad2e9 +(I) [20:37:33.005] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=240/0, mdat=463/926, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=5/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=5/0, lb_p=29/8, lb_c=0/0, cast=0/0, cdat=220/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:37:33.469] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=827092ef89503efea600deb46c3f254baaa79c46facd2ab0793c54b1001a3be7 +(I) [20:37:36.009] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=14/0, mdat=25/50, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=2/0, lb_c=0/0, cast=0/0, cdat=13/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:37:41.000] [000013504]: Local user framerate is [135.993195] +(I) [20:37:41.000] [000013504]: Local user MinDelay=[36ms], MaxDelay=[57ms], AvgDelay=[46ms], minRTT[43ms], maxRTT[153ms], avgRTT[82ms] +(I) [20:37:45.963] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7b2c997aa149639339495f1dde2cff7e8109c0a94edc8e91e1d640abecbbdc1d +(I) [20:37:46.771] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=04d983f9cd7b463aede5c191797fca2f8c26653f2c90e5505ecfe0ed4cf12c78 +(I) [20:37:47.278] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3a0f3453f7ca22cd879b71ae62a044be3e9a74ff7fbb16fdfbc6e8333c57b65d +(I) [20:37:55.586] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b7c6e58b4bc16ae809b8488bc6d3cb174105f466842ad8f3bd01757e63ee56bb +(I) [20:38:02.002] [000013504]: Local user framerate is [138.850006] +(I) [20:38:02.002] [000013504]: Local user MinDelay=[35ms], MaxDelay=[57ms], AvgDelay=[44ms], minRTT[33ms], maxRTT[153ms], avgRTT[78ms] +(I) [20:38:12.097] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=792443b2422889b62500f0b1dd2cb462e023cc53d8afee046b652a89a26f15dd +(I) [20:38:23.000] [000013504]: Local user framerate is [136.686325] +(I) [20:38:23.000] [000013504]: Local user MinDelay=[22ms], MaxDelay=[59ms], AvgDelay=[44ms], minRTT[27ms], maxRTT[153ms], avgRTT[75ms] +(I) [20:38:27.032] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b90826380af206121c063ce938800a71e4a21246744c529a9c521aad51e19861 +(I) [20:38:32.519] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=32d5ce875eccf4891fa44fa0ac461b11d289d0f164c4ec8b38ec53329fa5910f +(I) [20:38:34.002] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=202/0, mdat=463/926, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=1/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=1/0, lb_p=29/8, lb_c=0/0, cast=0/0, cdat=185/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:38:36.842] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=21a443d93b451a37d628ccd7ff8272ce2018be4f51fcd1ea3891313a8a4ad307 +(I) [20:38:37.005] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=13/0, mdat=24/48, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=2/1, lb_c=0/0, cast=0/0, cdat=12/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:38:38.369] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=91c2b4436f611bec34a95a1911a8a98f81bc3978163ca55fc9dd108d4b9e6fa2 +(I) [20:38:44.008] [000013504]: Local user framerate is [139.921997] +(I) [20:38:44.008] [000013504]: Local user MinDelay=[29ms], MaxDelay=[51ms], AvgDelay=[40ms], minRTT[25ms], maxRTT[161ms], avgRTT[85ms] +(I) [20:38:58.009] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f1caef0cf14aac7636811fcdec1100dbb608da2e7bb7dd050d772cf57ff913fc +(I) [20:39:05.002] [000013504]: Local user framerate is [140.121964] +(I) [20:39:05.002] [000013504]: Local user MinDelay=[28ms], MaxDelay=[68ms], AvgDelay=[41ms], minRTT[25ms], maxRTT[161ms], avgRTT[75ms] +(I) [20:39:11.971] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=80b3d73f40c21a7b85979f49670a3cce68c5ca9baea08c31851172516a18bafb +(I) [20:39:19.980] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9ebc957f495cec50ecf6be4f19cb6a79dd1aef06ac55783ee29cc2dab5248afe +(I) [20:39:21.042] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a4e1ccbd89b04577d52b599250bb8ab7f6e8d9c0ada83677c2cc0c0b5dc01016 +(I) [20:39:26.002] [000013504]: Local user framerate is [140.035995] +(I) [20:39:26.002] [000013504]: Local user MinDelay=[28ms], MaxDelay=[68ms], AvgDelay=[41ms], minRTT[25ms], maxRTT[161ms], avgRTT[77ms] +(I) [20:39:35.003] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=247/0, mdat=464/928, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=28/7, lb_c=0/0, cast=0/0, cdat=232/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:39:35.146] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fe3e6861d691e3d0864dfafeba4f9fae93ce5a04c344736395ca0144c790e226 +(I) [20:39:35.946] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cff19fd642aeb334c7c0f820c3e42b5038bb59750f044a83f1c00ac08a350d1c +(I) [20:39:36.449] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b8a684d457a0a4167281267adc042f828e34b1d8607e258c0825de6c459ec462 +(I) [20:39:38.008] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=21/0, mdat=24/48, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=2/1, lb_c=0/0, cast=0/0, cdat=20/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:39:38.360] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9338d9cbe58dca47b1f97581fb476e7bb2e1049a47ccf50f1c3972f59829b478 +(I) [20:39:47.014] [000013504]: Local user framerate is [139.279114] +(I) [20:39:47.014] [000013504]: Local user MinDelay=[29ms], MaxDelay=[55ms], AvgDelay=[40ms], minRTT[35ms], maxRTT[156ms], avgRTT[79ms] +(I) [20:39:50.265] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=88237b362b65aa19e9b9760d680d64a914423c662b1715aad5589e126c4e5ba6 +(I) [20:39:58.835] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b1a629a7182225b6a696403fe05f9228a69e4e31ba996684b7d28e3be57000e0 +(I) [20:40:05.526] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=dbf658487c75a4e24eeb1691826927ceceaec43b08a41d703ab29a4f14f843fd +(I) [20:40:08.000] [000013504]: Local user framerate is [134.293274] +(I) [20:40:08.000] [000013504]: Local user MinDelay=[29ms], MaxDelay=[73ms], AvgDelay=[41ms], minRTT[23ms], maxRTT[156ms], avgRTT[74ms] +(I) [20:40:10.164] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a19b132a079e047683db0897121956bfe0c66196d380c059b6bbc8ebcec7dcae +(I) [20:40:17.199] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=dbaabe69bfb9c61a6305ee5ec4920b7f51b3ec85ba0a2df71e4ca155dd02cb3e +(I) [20:40:17.986] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e5d1e4731dca26592b8e5dea58c59b23a2a73e60503f745625867ea21ae141dd +(I) [20:40:18.489] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fb16cadabf0aea82ec57e4aacd7ce5715ae7f8108d800c0507770c3938fc1ddf +(I) [20:40:20.126] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cba0011052f0b25564a0f5a5a1051e42cddc8e79c6fae0297e087ce19ee97ecc +(I) [20:40:20.631] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0d3fa36913ebbb85695444cf0c5944acd633ecc69ae6e23738fe8e477a890ab5 +(I) [20:40:21.465] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ba62046eb3fdba50dc981ceaff06d259e53de0fee0cf94bfe338daa8d620e06a +(I) [20:40:24.177] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ef1ad5814399e06e37e8cd80508ce342c58acf7c92cea51f7c12743bae3d8b74 +(I) [20:40:25.436] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b57c7eafa6e77fa41aafaa6b9a84e0bdd6e266dba534d07a1011b91a338b0832 +(I) [20:40:26.720] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=765bdc3d69ef392a9a860d7a5000a9f5bb2f2572ebb95db3c4a64f7c526b38c2 +(I) [20:40:29.005] [000013504]: Local user framerate is [136.443161] +(I) [20:40:29.005] [000013504]: Local user MinDelay=[29ms], MaxDelay=[73ms], AvgDelay=[42ms], minRTT[39ms], maxRTT[151ms], avgRTT[70ms] +(I) [20:40:29.691] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a54e9cdd91fb556eb40a06032c82c4c4bcb8fec77882904a522a023330f31aee +(I) [20:40:33.725] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d13ca13ecab214e289ff852f3fd0ce2a33bd171153649d3672206915bd99ce80 +(I) [20:40:36.009] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=273/0, mdat=464/928, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=29/7, lb_c=0/0, cast=0/0, cdat=249/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:40:36.478] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a482edec1f162bde5b001821a45d8d7da79b05251c389eea88b0dd682b2b4e3a +(I) [20:40:39.002] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=17/0, mdat=24/48, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=2/1, lb_c=0/0, cast=0/0, cdat=15/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:40:40.308] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=dd6a1b99dc8d8e63ec587fbda122ea776504d52b2704de0b3b76cef6f96d3820 +(I) [20:40:42.007] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cdca95919c5c941264476825a3368325ca163cb216170807f4413f8e97d44d46 +(I) [20:40:47.729] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1cfabbfdebd1c6154e6b97e0d945fbe8d93846d1c7fbfa2b72070ded2383299b +(I) [20:40:50.005] [000013504]: Local user framerate is [123.712883] +(I) [20:40:50.005] [000013504]: Local user MinDelay=[17ms], MaxDelay=[64ms], AvgDelay=[47ms], minRTT[35ms], maxRTT[155ms], avgRTT[83ms] +(I) [20:40:54.301] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=51bc4aae42fa2ac251ff29af7cb93f74bcc26dfe27ac2f76c9a818eb288ca224 +(I) [20:40:56.032] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f2b494ab3617591235cf210810e9c7af15338a0a3011749f32721b3a4b0d2ce0 +(I) [20:40:58.597] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3112d33cad17093fbb9b9a35e043b842e6eca8ad5abe4f743f91bf3374cfef93 +(I) [20:41:04.571] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=39f0bf90b3bfe9710275a0ab2607a1e2b3bd609c1dcc6df6e9add448c99eba78 +(I) [20:41:06.476] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8aa0e6a9166a01d03182e8c4e088210adc8ce09ddcf3dd3db205040fafb2930f +(I) [20:41:11.006] [000013504]: Local user framerate is [132.390427] +(I) [20:41:11.006] [000013504]: Local user MinDelay=[17ms], MaxDelay=[64ms], AvgDelay=[46ms], minRTT[29ms], maxRTT[155ms], avgRTT[77ms] +(I) [20:41:12.869] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=301d7b8a0bb742f6517dadffbd997bf1d9cd82268262bf0253d2b19d5f9a2f3e +(I) [20:41:18.531] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=849bf0400104a78778a5c75ef5722a3f6fd19085d0efdd0c21fcf53952133e84 +(I) [20:41:21.511] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=89bf2152cb18fe632f84a121b584fba9b71dd8d7f00675ceb667c46ddd1179e3 +(I) [20:41:26.826] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a9fae58dd72e0e852267a13e000eb386bb53c24a32f7fd91f8ecdce77db43f81 +(I) [20:41:32.001] [000013504]: Local user framerate is [135.995590] +(I) [20:41:32.001] [000013504]: Local user MinDelay=[17ms], MaxDelay=[69ms], AvgDelay=[45ms], minRTT[29ms], maxRTT[155ms], avgRTT[77ms] +(I) [20:41:35.546] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=70e7fe7a675a8c4dbc41cf6383df69ad4ff1bd76a9a7947905adc69d6394cde7 +(I) [20:41:37.008] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=286/0, mdat=464/928, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=29/8, lb_c=0/0, cast=0/0, cdat=259/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:41:40.009] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=16/0, mdat=24/48, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=3/1, lb_c=0/0, cast=0/0, cdat=16/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:41:40.255] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=03fdf6c6b01684c310f46aa3415e6c73c22960015867b3ffd6ef3eb5489e69b4 +(I) [20:41:40.784] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5c4b0c026840713aa1d2dc376845820b1c229f192075a6696417e2f695b4778a +(I) [20:41:42.810] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b3e4a6abd7c72497a7683258f59843a88a1608311b60af22f93a8bde21f1777e +(I) [20:41:46.197] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c5e6c900e29e99af3d6cf1cf92ae67ccac90462ad9c4a85fa6ce4f6774f8833c +(I) [20:41:49.878] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=801449f7ee54b865339381bbdf65e02a6cd62ae02e65b78774b0d2f24bc5b6ce +(I) [20:41:51.280] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fbcf63b30d103e16e08d9bbbc67b352574457310818b589a8940ce31244fdb6d +(I) [20:41:53.003] [000013504]: Local user framerate is [136.336365] +(I) [20:41:53.003] [000013504]: Local user MinDelay=[29ms], MaxDelay=[69ms], AvgDelay=[45ms], minRTT[32ms], maxRTT[152ms], avgRTT[82ms] +(I) [20:42:02.051] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5ddea770ec87d0386a4f29f6aab8d72fe66235dc916718936bc320602b54e1d7 +(I) [20:42:09.113] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cb7f8578a55f0b0a4a6795937d92146a7dd7834ef78a60f19d8fe9e87ab9ba9c +(I) [20:42:10.887] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c5d5ddacb6184e29b4b6d2f099635b009bc146413742108fe5e5b7cce23a13e8 +(I) [20:42:11.389] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4c3575753f48752e09404206be6ddf4ba3cab0fea4c58466830a5ca683bee7a5 +(I) [20:42:11.895] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=977b4bc8a759c0493f8fc2d03d759f0a47bd920b2d0b7faf409e75aaba24d76a +(I) [20:42:14.007] [000013504]: Local user framerate is [133.536636] +(I) [20:42:14.007] [000013504]: Local user MinDelay=[29ms], MaxDelay=[69ms], AvgDelay=[46ms], minRTT[32ms], maxRTT[159ms], avgRTT[79ms] +(I) [20:42:15.873] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=eb852205a6c4155200305163d1038abbde3c73a236a68485aa17451d7832e5b5 +(I) [20:42:23.418] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=06c4dcb3dfcf5dbed56a06a1d94d509c6a2c838777a1f3e54a8e6f5db15c746d +(I) [20:42:25.676] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=eef15e60b3d584d6fa5556e1216b87fb275904f87653933b814d872c5c490eba +(I) [20:42:28.294] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=74bef0d392dcb59a4dfd62e082344b3be929daf31b5299d8939786c5e59f78f1 +(I) [20:42:30.472] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=17047b8ba1373b39f82e3aa0144f5c213697bee532de8e39d8fa8875807eb263 +(I) [20:42:33.601] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=435e0a01c79685ed4b91682e32d15a241826088e28988cbc6f65081ea8f2f77c +(I) [20:42:34.954] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0ee918c55026979991c31e1767e56c296bfbe5301160b3ab863e10de42c733ab +(I) [20:42:35.004] [000013504]: Local user framerate is [130.967255] +(I) [20:42:35.004] [000013504]: Local user MinDelay=[40ms], MaxDelay=[53ms], AvgDelay=[46ms], minRTT[41ms], maxRTT[146ms], avgRTT[93ms] +(I) [20:42:38.004] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=239/0, mdat=463/926, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=1/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=1/0, lb_p=27/7, lb_c=0/0, cast=0/0, cdat=219/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:42:38.228] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0f3caa6efc749327970f6da485a843b5caeb9137469eea20a4e40ea218f41179 +(I) [20:42:41.002] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=11/0, mdat=24/48, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=3/1, lb_c=0/0, cast=0/0, cdat=10/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:42:43.415] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7a4e1d667f599207c0592951c9589e8cb7d92c54a7424e85d98d80625d3766ef +(I) [20:42:47.984] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b2f12c7d5963393ac0d8174a8274091d0e61907f878fc2bbbceae8aa9008eba7 +(I) [20:42:52.983] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=bc942ba919f450a07c89cf6099c066c70e267e6320813616e62f9454082c4b26 +(I) [20:42:56.003] [000013504]: Local user framerate is [135.243225] +(I) [20:42:56.003] [000013504]: Local user MinDelay=[35ms], MaxDelay=[53ms], AvgDelay=[42ms], minRTT[26ms], maxRTT[148ms], avgRTT[86ms] +(I) [20:42:57.344] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=156893780749e587ad28f7c29000bcdf27621befc3fc4c8ed1e5665e9a45beda +(I) [20:43:02.651] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=37c43291823ed113205e9e6de1744df01a0145d7d90c9e8811f18260bddd0dff +(I) [20:43:03.998] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=240dba71abc8347af6754d371d0b35b092286bc6030cb154acfdc0fb791a11ab +(I) [20:43:09.210] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d905647fd9bd836c8661a3e2dbb949c9babf4e56770eb60917b1c2b6774cd6b5 +(I) [20:43:13.342] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=65ad7231fee33d3af96ec068a2a0a1d85db4d56d976a61dfe2e6557ddbea8469 +(I) [20:43:17.006] [000013504]: Local user framerate is [136.758972] +(I) [20:43:17.006] [000013504]: Local user MinDelay=[15ms], MaxDelay=[64ms], AvgDelay=[40ms], minRTT[26ms], maxRTT[156ms], avgRTT[82ms] +(I) [20:43:25.853] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8f087dfc6b30ecae0c3cca4dac9e49dc2d90e4300804b63889f208337782dc20 +(I) [20:43:29.449] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=75416a5b5205932f2798070e3c225c561ad9712343a4357ada07dca8ca6364de +(I) [20:43:33.406] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=20d15dfcca035c77c62a09886bac6d324cbe16adc1f14a696eb8aa5a7269a777 +(I) [20:43:38.003] [000013504]: Local user framerate is [137.100006] +(I) [20:43:38.003] [000013504]: Local user MinDelay=[33ms], MaxDelay=[57ms], AvgDelay=[45ms], minRTT[39ms], maxRTT[126ms], avgRTT[72ms] +(I) [20:43:39.005] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=282/0, mdat=464/928, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=28/7, lb_c=0/0, cast=0/0, cdat=249/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:43:42.010] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=13/0, mdat=24/48, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=2/1, lb_c=0/0, cast=0/0, cdat=12/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:43:42.917] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f36ed4b45674615f01f352699cf3a533750a223e55328e18ef24d94ec6b0d25c +(I) [20:43:47.410] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a6262df5940a81aec83fdc75ad1dd7989711c8260feac03e241fa4593ae9346a +(I) [20:43:49.357] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=15a5519225e3509291d9bff5248aef45a0d7226754ad54dc20e7f792e03465f2 +(I) [20:43:55.338] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f4bfdbeb1236ebeab6ab1122732037e029506a0d015777df606c3f46aded656a +(I) [20:43:57.520] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ede53c6e1248040999860b3ffdbdcec1fd1d3168b6853b546170790dbac55ebe +(I) [20:43:59.009] [000013504]: Local user framerate is [134.972992] +(I) [20:43:59.009] [000013504]: Local user MinDelay=[33ms], MaxDelay=[58ms], AvgDelay=[44ms], minRTT[39ms], maxRTT[158ms], avgRTT[75ms] +(I) [20:44:03.551] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=81225fb22ad0548a58c24b062406666a5cd7d8d9daa7e5b1d79663ba76647eea +(I) [20:44:09.974] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=75241d43762ad8669f5cb9a19f30799a4c525bb530b1921bf7a419124f0ac0b0 +(I) [20:44:10.391] [000013504]: Movie Manager -- No movies with locale [fr] exist on disk. Switching to fallback locale [en]. +(I) [20:44:10.417] [000013504]: Movie Manager -- No movies with locale [fr] exist on disk. Switching to fallback locale [en]. +(I) [20:44:15.252] [000013504]: MOD -- Game Over at frame 16176 +(I) [20:44:15.282] [000013504]: Report sent for profileID[80459] -> race=[137123], result=[1], XP Gain=[15441] +(I) [20:44:15.282] [000013504]: Report sent for profileID[16432] -> race=[203852], result=[0], XP Gain=[20421] +(I) [20:44:15.305] [000013504]: Party::SetStatus - S_CONFIGURING +(I) [20:44:15.315] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=306c43293e48f5f242294c3b3635d8822aa4acb8960578817c847d4f7c8bda63 +(I) [20:44:15.315] [000013504]: Sending matchinfo change #14 +(E) [20:44:15.419] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [20:44:15.816] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=72d6a101f4ca1e3712b5f384cb645b8a44b79a715e4855d6c3bb4de99ad460e0 +(I) [20:44:15.816] [000013504]: MPMatchSetup::OnMatchEvent - MET_ReportResults - result [0] +(I) [20:44:15.816] [000013504]: GameObjController - OnMatchEvent: event type 9 +(I) [20:44:16.317] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9499604341e5436e5b623083fce6b2953284bda313ad31b05f66a7a435abf25a +(I) [20:44:16.824] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=35e6619a3e858ff3ef81a93a0fab03055a00ecbe4be9e6e9733afd6e00986963 +(I) [20:44:17.330] [000023384]: Read bytes [0,"AvatarStatsUpdatedMessage",16432,[[[4,16432,76,"",1680461057]]]] +(I) [20:44:17.330] [000023384]: Read bytes [0,"AvatarStatsUpdatedMessage",16432,[[[6,16432,85726,"",1680461057]]]] +(I) [20:44:17.330] [000023384]: Read bytes [0,"AvatarStatsUpdatedMessage",16432,[[[14,16432,70737,"",1680461057]]]] +(I) [20:44:17.330] [000023384]: Read bytes [0,"AvatarUpdateMessage",16432,[[1393,16432,"/steam/76561198005864560","","UMirinBrah?","",11893,1241,1241,2074389,null,"76561198005864560",3,[]]]] +(I) [20:44:17.330] [000023384]: Read bytes [0,"AvatarUpdateMessage",16432,[[1629,80459,"/steam/76561198058198116","","Equuz","",70653,1631,1631,2074389,null,"76561198058198116",3,[]]]] +(I) [20:44:17.330] [000023384]: Read bytes [0,"GameResultNotificationMessage",16432,[[[16432,20,203852,1,[0],11893,[["unitprod",53],["vvetrank",15],["cabil",6],["dmgdone",16819],["plost",44],["svetrank",7],["reqmax",0],["cpearn",17],["reqspnt",0],["powearn",0],["blost",2],["elitekill",-2],["edeaths",115],["structdmg",0],["pcap",51],["inactperiod",20],["lowintperiod",0],["precap",45],["sqkill",6],["popmax",0],["powspnt",0],["sqprod",17],["bprod",11],["svetxp",16200],["vabnd",0],["addonkill",116],["totalcmds",3137],["gammaspnt",0],["vkill",4],["objdmh",0],["abil",155],["sqlost",10],["vcap",0],["vlost",4],["gt",2022],["upg",250],["vvetxp",18700],["reqearn",0],["vp1",0],["vp0",0],["erein",80],["cflags",0],["wpnpu",0],["ekills",114],["powmax",0],["vprod",6]],0,10,[],null,[],[],[],[],[],[]],[80459,20,137123,0,[0],70653,[["unitprod",45],["vvetrank",13],["cabil",6],["dmgdone",14500],["plost",45],["svetrank",6],["reqmax",0],["cpearn",8],["reqspnt",0],["powearn",0],["blost",1],["elitekill",1],["edeaths",124],["structdmg",0],["pcap",55],["inactperiod",13],["lowintperiod",0],["precap",44],["sqkill",8],["popmax",0],["powspnt",0],["sqprod",13],["bprod",8],["svetxp",14800],["vabnd",0],["addonkill",99],["totalcmds",1920],["gammaspnt",0],["vkill",3],["objdmh",0],["abil",113],["sqlost",6],["vcap",0],["vlost",4],["gt",2022],["upg",130],["vvetxp",16350],["reqearn",0],["vp1",0],["vp0",0],["erein",100],["cflags",0],["wpnpu",0],["ekills",100],["powmax",0],["vprod",5]],0,10,[],null,[],[],[],[],[],[]]],[[11893,2130257,48,13,-3,0,0,50,2263,20,1074,13,1440,1680461057],[70653,2130261,16,2,8,0,0,47,2855,24,1503,13,1402,1680461057]],[[4,16432,76,"",1680448991],[6,16432,85726,"",1680448991],[14,16432,70737,"",1680448991],[7,80459,25,"",1680455996],[8,80459,20,"",1680455996],[9,80459,27167,"",1680455996],[15,80459,21403,"",1680455996]],5805364,"",[]]] +(I) [20:44:17.331] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2072782e8aea33dd42752397c19256c6951d92516ff2f8c3f475ea7d65bcc5f3 +(I) [20:44:17.331] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:17.331] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:17.331] [000013504]: RNT_StatsUpdate: Loss notification, profileID 16432, race =203852, level=13, ranking=50 +(I) [20:44:17.331] [000013504]: RNT_StatsUpdate: Win notification, profileID 80459, race =137123, level=13, ranking=47 +(I) [20:44:17.837] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=46e3f4378c7859176ddc45e5e33c0e4c6de6a1f5a8f8d0eaf2205f138cbcffa7 +(I) [20:44:18.321] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:18.335] [000013504]: GetPartyStatsByID found 1 teams for user ID 16432 +(I) [20:44:18.458] [000013504]: GameApp::SetTargetState : new (UnloadedGame) old (Uninitialized) +(I) [20:44:18.467] [000013504]: GameApp::SetState : new (UnloadingGame) old (Game) +(I) [20:44:18.583] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:18.583] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:18.583] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:18.583] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:18.583] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:18.583] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:18.583] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:18.583] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:18.583] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:18.583] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:18.583] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:18.583] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:18.583] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:18.583] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:18.583] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:18.583] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:18.583] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:18.583] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:18.583] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:18.583] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:18.583] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:18.583] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:18.583] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:18.583] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:18.583] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:18.583] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:18.583] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:18.583] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:18.583] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:18.843] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:18.843] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:19.490] [000013504]: GameObj::ShutdownGameObj +(I) [20:44:19.490] [000013504]: GetMaxFrameTimeFromProfile: players=2 expected FPS=100.000000, bars=0, max avg=0.000, sd=0.000, 0 samples = +(I) [20:44:19.490] [000013504]: PerformanceRecorder::EndRecording - game size=2, max average=0.008083, worst frame=0.010000 +(I) [20:44:19.490] [000013504]: Recording: No [2 players] + +(I) [20:44:19.490] [000013504]: Max/Avg: 0.01, 0.01 sec (fps=123.71, 138.25) (101 samples) + +(I) [20:44:19.490] [000013504]: Bars: 0 + +(I) [20:44:19.491] [000013504]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_seconds_played] +(I) [20:44:19.491] [000013504]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_units_produced] +(I) [20:44:19.491] [000013504]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_units_killed] +(I) [20:44:19.491] [000013504]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_units_lost] +(I) [20:44:19.495] [000013504]: StatArtWarningsCount 0 +(I) [20:44:19.495] [000013504]: StatDataWarningsCount 0 +(I) [20:44:19.867] [000013504]: GameApp::SetState : new (UnloadedGame) old (UnloadingGame) +(I) [20:44:19.867] [000013504]: GameApp::SetTargetState : new (Uninitialized) old (UnloadedGame) +(I) [20:44:19.884] [000013504]: SessionID : 589534 - Disconnect called with reasonID 1000 - MatchSetup::Disconnect +(I) [20:44:19.884] [000013504]: MatchSetupManager: Removed queued match [cliff_crossing_2p] Queue is now [0] +(I) [20:44:19.884] [000013504]: SessionID : 589534 - Disconnect called with reasonID 1000 - MatchSetup::Disconnect +(I) [20:44:19.891] [000013504]: Disconnect process already running +(I) [20:44:19.893] [000013504]: SessionID : 5894c2 - Disconnect called with reasonID 1000 - Destroying Party +(E) [20:44:19.927] [000013504]: SetVisible called while !IsConnected +(I) [20:44:20.600] [000013504]: WorldwideAdvertisementService::Process - EVENT_HOSTMIGRATION +(I) [20:44:20.600] [000013504]: WorldwidePartyService::OnHostMigration - [5805364] Got a queued migration event while disconnecting, ignoring +(I) [20:44:20.600] [000013504]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [20:44:20.600] [000013504]: WorldwidePartyService::PeerRemove, Removing peer ID: 1 +(I) [20:44:20.600] [000013504]: peerremove - peerIDRemoved=80459, reasonID=119, reason debug hint - Forcing peers to disconnect +(I) [20:44:20.600] [000013504]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [20:44:20.600] [000013504]: WorldwidePartyService::PeerRemove, Removing peer ID: 2 +(I) [20:44:20.600] [000013504]: peerremove - peerIDRemoved=16432, reasonID=1000, reason debug hint - MatchSetup::Disconnect +(E) [20:44:20.604] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.615] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.626] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.637] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.648] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.659] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.670] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.681] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.692] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.703] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.714] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.725] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.736] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.747] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.757] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.768] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.778] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.789] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.800] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.810] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.821] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.832] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.842] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.853] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [20:44:20.860] [000013504]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [20:44:20.860] [000013504]: WorldwidePartyService::PeerRemove, Removing peer ID: 1 +(I) [20:44:20.860] [000013504]: peerremove - peerIDRemoved=16432, reasonID=1000, reason debug hint - Destroying Party +(E) [20:44:20.864] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.864] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.875] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.875] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.886] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.886] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.897] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.897] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.908] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.908] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.919] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.919] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.930] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.930] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.941] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.941] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.952] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.952] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.963] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.963] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.974] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.974] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.985] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.985] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.996] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:20.996] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.007] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.007] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.018] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.018] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.029] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.029] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.040] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.040] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.051] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.051] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.062] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.062] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.073] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.073] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.084] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.084] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.095] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.095] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.106] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.106] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [20:44:21.106] [000013504]: PeerRemoveAll - flushing local session peer data +(I) [20:44:21.106] [000013504]: LeaveSessionInternal - no action taken, needLeave=0, service=0 +(I) [20:44:21.106] [000013504]: Destroyed Matchinfo +(E) [20:44:21.106] [000013504]: Socks::Free: Socket 0/6176 did not close properly before being freed. +(I) [20:44:21.106] [000013504]: OnDestroyPartyNotification - partyID = 5805364, prevID = -1 +(I) [20:44:21.106] [000013504]: OnDestroyPartyNotification - partyID = 5805364, prevID = -1 +(E) [20:44:21.117] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.128] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.139] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.149] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.160] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.171] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.182] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.193] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [20:44:21.197] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:21.197] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:21.197] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:21.197] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:21.197] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:21.197] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:21.197] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:21.197] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:21.197] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:21.197] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:21.197] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:21.197] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:21.197] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:21.197] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:21.197] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:21.197] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:21.197] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:21.197] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:21.197] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:21.197] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:21.197] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(E) [20:44:21.204] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.215] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.226] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.237] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.248] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.259] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.270] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.281] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.292] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.303] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:44:21.314] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [20:44:21.317] [000013504]: PeerRemoveAll - flushing local session peer data +(I) [20:44:21.317] [000013504]: LeaveSessionInternal - no action taken, needLeave=0, service=0 +(I) [20:44:21.317] [000013504]: Destroyed Matchinfo +(E) [20:44:21.317] [000013504]: Socks::Free: Socket 0/6000 did not close properly before being freed. +(I) [20:44:21.317] [000013504]: OnDestroyPartyNotification - partyID = 5805250, prevID = -1 +(I) [20:44:21.317] [000013504]: OnDestroyPartyNotification - partyID = 5805250, prevID = -1 +(I) [20:44:23.651] [000019412]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [None] +(I) [20:44:23.661] [000019412]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [None] +(I) [20:44:23.661] [000019412]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [20:44:35.013] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=96b980c814ee4eaab1ffc2ba3b0acc694d7c4dfad1f60f301450a0a2a05dc78c +(I) [20:44:55.489] [000019412]: RENDERING - new resize requested [2560, 1440] reason [WindowSizeEvent] +(I) [20:44:55.490] [000019412]: RENDERING - Starting compositor fullscreen transition [1] +(I) [20:44:55.490] [000019412]: RENDERING - Setting Fullscreen On +(I) [20:44:55.585] [000019412]: RENDERING - state Size [2560 x 1440], fullscreen size[2560 x 1440] +(I) [20:44:55.588] [000019412]: RENDERING - Finished compositor fullscreen transition [1] +(I) [20:44:55.588] [000019412]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [20:44:55.591] [000019412]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [20:44:55.591] [000019412]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [20:44:55.619] [000019412]: RENDERING - new resize requested [2578, 1487] reason [WindowSizeEvent] +(I) [20:44:55.619] [000019412]: RENDERING - resize request clobbering old request [2578, 1487] reason [WindowSizeEvent] +(I) [20:44:55.619] [000019412]: RENDERING - new resize requested [2560, 1440] reason [WindowSizeEvent] +(I) [20:44:55.619] [000019412]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [20:44:55.625] [000019412]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [20:44:55.625] [000019412]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [20:44:56.850] [000013504]: starting online hosting +(I) [20:44:57.305] [000013504]: OnlineHostAsync success +(I) [20:44:57.305] [000013504]: Created Matchinfo for sessionID 5809423 +(I) [20:44:57.305] [000013504]: OnJoinAdvertisementSuccess - joined online match, server leave notification required +(I) [20:44:57.305] [000013504]: starting local hosting +(I) [20:44:57.305] [000013504]: ValidateCustomData: called with 4965 bytes of custom data +(I) [20:44:57.305] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:57.305] [000013504]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [20:44:57.305] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:44:57.314] [000013504]: Sending matchinfo change #2 +(I) [20:44:57.314] [000013504]: HostAsync - got operation info 0:SessionOperationInfo::SUCCESS +(I) [20:44:57.321] [000013504]: hosting - Session is connected +(I) [20:44:57.322] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=1/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=1/0, Pdel=0/0, drop=0/0, data=1/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=3/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=3/0, lb_p=0/0, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=1/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(E) [20:44:57.419] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [20:44:57.539] [000013504]: CreateSteamSessionAsync::Process: Successfully created lobby; lobbyId=109775243172289906 +(I) [20:44:58.246] [000023384]: Read bytes [0,"PlatformSessionUpdateMessage",16432,[5809423,"0",109775243172289906,""]] +(I) [20:44:58.246] [000013504]: Sending matchinfo change #3 +(I) [20:44:58.281] [000013504]: HostAsync - completed with HostResult = 0 +(I) [20:44:58.281] [000013504]: Party::SetHostJoinResult - 0 +(I) [20:44:58.281] [000013504]: Party::SetStatus - S_CONFIGURING +(I) [20:44:58.281] [000013504]: WorldwideAutomatchService::OnHostComplete - automatcher is no longer active - stopPollPending 0 automatchPollID 18446744073709551615 +(E) [20:44:58.298] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [20:44:58.376] [000013504]: Sending matchinfo change #4 +(E) [20:44:58.418] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [20:45:04.786] [000013504]: Sending matchinfo change #5 +(E) [20:45:04.912] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [20:45:05.585] [000013504]: Sending matchinfo change #6 +(E) [20:45:05.676] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [20:45:06.145] [000013504]: Sending matchinfo change #7 +(E) [20:45:06.300] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [20:45:06.805] [000013504]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [20:45:06.811] [000013504]: Sending matchinfo change #9 +(E) [20:45:06.924] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [20:45:06.987] [000013504]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [20:45:06.987] [000013504]: Sending matchinfo change #10 +(E) [20:45:07.043] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [20:45:16.013] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=be7b953d91815b3e10d90f45f5e8139759a13045caf514a199cb677526c01393 +(I) [20:45:17.002] [000013504]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [20:45:17.184] [000013504]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [20:45:28.004] [000013504]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [20:45:28.194] [000013504]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [20:45:37.007] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=443423c3cdfe2e0563a5f3f580cdd31174f126708a742d0427efc3f619b4ea52 +(I) [20:45:39.005] [000013504]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [20:45:39.187] [000013504]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [20:45:50.004] [000013504]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [20:45:50.187] [000013504]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [20:45:58.006] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/2, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/2, Pdel=0/0, drop=0/0, data=7/16, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=7/20, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=7/9, lb_p=23/4, lb_c=0/1, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:45:59.012] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=763902c74ac6cc5b38b5ab8b7377387d686b2ec8f5930b1d3a2daab21373f28e +(I) [20:46:01.001] [000013504]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [20:46:01.198] [000013504]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [20:46:12.005] [000013504]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [20:46:12.174] [000013504]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [20:46:21.007] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0d30a1cd4b6606e7481f071ad5be2327746aa24f6e583275daa6a134a15c9f42 +(I) [20:46:23.003] [000013504]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [20:46:23.179] [000013504]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [20:46:34.000] [000013504]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [20:46:34.198] [000013504]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [20:46:43.013] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=16dedea1b6eb923aedc064ae0c8feaa945ea885b69c6f754838b1c776be8e0db +(I) [20:46:45.004] [000013504]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [20:46:45.193] [000013504]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [20:46:56.003] [000013504]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [20:46:56.184] [000013504]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [20:46:59.002] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=24/4, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:47:05.012] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7aa71e9eca5e6b202698ae2d5523be4d3c9c323db03a29218c133e402c9ace14 +(I) [20:47:07.002] [000013504]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [20:47:07.184] [000013504]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [20:47:18.000] [000013504]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [20:47:18.190] [000013504]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [20:47:27.007] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fa3142365f7515615ee902b010681afdf7c6b1e2f675c4498299723dd43c3b30 +(I) [20:47:29.004] [000013504]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [20:47:29.179] [000013504]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [20:47:40.001] [000013504]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [20:47:40.184] [000013504]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [20:47:49.007] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b6ca71edffc72b4073c40849be2b83cde566ecefe15c1f4d2b8fccd1d999790d +(I) [20:47:51.005] [000013504]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [20:47:51.221] [000013504]: Automatch2Internal - Server told us to host matchID [5809769] +(I) [20:47:51.221] [000013504]: WorldwideAutomatch2Service::OnHost - host request validated, attempting +(I) [20:47:51.221] [000013504]: WorldwideAutomatch2Service::OnHost - trying to host matchtype 20 +(I) [20:47:51.221] [000013504]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [20:47:51.229] [000013504]: starting online hosting +(I) [20:47:51.414] [000013504]: OnlineHostAsync success +(I) [20:47:51.414] [000013504]: Created Matchinfo for sessionID 5809769 +(I) [20:47:51.414] [000013504]: OnJoinAdvertisementSuccess - joined online match, server leave notification required +(I) [20:47:51.414] [000013504]: starting local hosting +(I) [20:47:51.414] [000013504]: ValidateCustomData: called with 2215 bytes of custom data +(I) [20:47:51.414] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:47:51.414] [000013504]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [20:47:51.414] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:47:51.423] [000013504]: Sending matchinfo change #2 +(I) [20:47:51.423] [000013504]: HostAsync - got operation info 0:SessionOperationInfo::SUCCESS +(I) [20:47:51.428] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=1/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=1/0, Pdel=0/0, drop=0/0, data=1/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=3/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=3/0, lb_p=0/1, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=1/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:47:51.431] [000013504]: hosting - Session is connected +(E) [20:47:51.536] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [20:47:51.635] [000013504]: CreateSteamSessionAsync::Process: Successfully created lobby; lobbyId=109775243173133988 +(I) [20:47:52.353] [000023384]: Read bytes [0,"PlatformSessionUpdateMessage",16432,[5809769,"0",109775243173133988,""]] +(I) [20:47:52.359] [000013504]: Sending matchinfo change #3 +(I) [20:47:52.395] [000013504]: HostAsync - completed with HostResult = 0 +(I) [20:47:52.395] [000013504]: Creating an RLink chat channel (not a multiplayer game). +(I) [20:47:52.395] [000013504]: WorldwidePartyService::SetMatchState - state 0 unchanged ignoring +(I) [20:47:52.396] [000013504]: WorldwideAutomatchService::OnHostComplete - automatcher is no longer active - stopPollPending 0 automatchPollID 18446744073709551615 +(I) [20:47:52.396] [000013504]: Sending matchinfo change #11 +(E) [20:47:52.415] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [20:47:52.486] [000013504]: Sending matchinfo change #38 +(E) [20:47:52.492] [000013504]: Rejecting packet type 0 that claims to come from ourself +(E) [20:47:52.535] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [20:47:53.237] [000013504]: Sending matchinfo change #39 +(E) [20:47:53.279] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [20:47:54.411] [000013504]: ValidateCustomData: called with 1000 bytes of custom data +(I) [20:47:54.411] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:47:54.411] [000013504]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [20:47:54.411] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:47:54.412] [000013504]: WorldwideAutomatch2Service::Process - Got into game successfully, 2 players present, got correct slot settings - setting metadata +(I) [20:47:54.423] [000013504]: Sending matchinfo change #41 +(I) [20:47:54.676] [000013504]: Station [0:2] acknowledged matchinfo change #41 +(I) [20:47:55.302] [000013504]: Sending matchinfo change #42 +(I) [20:47:55.549] [000013504]: Station [0:2] acknowledged matchinfo change #42 +(I) [20:47:58.004] [000013504]: WorldwideAutomatch2Service::Process - Waiting, only 0 players ready +(I) [20:47:58.808] [000019412]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [None] +(I) [20:47:58.819] [000019412]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [None] +(I) [20:47:58.819] [000019412]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [20:48:00.000] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/4, ichk=0/0, sk_r=0/0, deny=0/0, Padd=2/2, Pdel=0/0, drop=0/0, data=6/16, mdat=0/0, voip=0/0, rchk=0/0, nudg=1/2, Thdr=0/0, Peer=9/24, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=9/10, lb_p=4/1, lb_c=0/1, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=2/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:48:02.003] [000013504]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [20:48:02.003] [000013504]: WorldwideAutomatch2Service::Process - Waiting, only 0 players ready +(I) [20:48:02.178] [000013504]: Automatch2Internal - Server told us to host matchID [5809769] +(I) [20:48:02.178] [000013504]: WorldwideAutomatch2Service::OnHost - already host, nothing to do +(I) [20:48:02.178] [000013504]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [20:48:06.005] [000013504]: WorldwideAutomatch2Service::Process - Got into game successfully, 2 players present, got correct slot settings - readying up +(I) [20:48:06.005] [000013504]: Accepted PlayerReadyRequest; profileID=16432 isReady=1 +(I) [20:48:06.012] [000013504]: Sending matchinfo change #43 +(I) [20:48:06.174] [000013504]: Station [0:2] acknowledged matchinfo change #43 +(I) [20:48:06.933] [000013504]: Accepted PlayerReadyRequest; profileID=422165 isReady=1 +(I) [20:48:06.933] [000013504]: Sending matchinfo change #44 +(I) [20:48:07.179] [000013504]: Station [0:2] acknowledged matchinfo change #44 +(I) [20:48:07.186] [000013504]: WorldwidePartyService::SetMatchState - state 1 - updating server +(I) [20:48:07.187] [000013504]: Party::SetStatus - S_PLAYING +(I) [20:48:07.204] [000013504]: Sending matchinfo change #12 +(E) [20:48:07.248] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [20:48:08.062] [000013504]: Sending matchinfo change #45 +(I) [20:48:08.062] [000013504]: WorldwideAutomatchService::OnStartComplete - detected successful game start +(I) [20:48:08.062] [000013504]: Match Started - [16432 /steam/76561198005864560], slot = 0, ranking = 49 +(I) [20:48:08.062] [000013504]: Match Started - [422165 /steam/76561198139592339], slot = 1, ranking = 823 +(I) [20:48:08.309] [000013504]: Station [0:2] acknowledged matchinfo change #45 +(I) [20:48:08.529] [000023384]: Read bytes [0,"MatchStartMessage",16432,[[[16432,["2068341","2068340"]],[422165,["2068341","2068340"]]],[["16432","203852"],["422165","137123"]],1680461288,[["16432",[[1543329,20,452979,16432,1,0,"{}",1677175591,2,-1,19,2147483647],[1543351,1,453412,16432,1,0,"{}",1677175591,4,-1,3,2147483647],[1543318,8,451866,16432,1,0,"{}",1677175591,6,-1,19,2147483647],[1543184,21,454503,16432,1,0,"{\"att\":{\"is_new\":{\"val\":\"0\"}},\"epos\":\"20\",\"eslot\":\"20\",\"dlc\":1}",1677175591,1543329,-1,19,-1],[1543327,21,453178,16432,1,0,"{\"epos\":\"0\",\"eslot\":\"0\"}",1677175591,1543329,-1,19,2147483647],[1543328,21,453177,16432,1,0,"{\"epos\":\"1\",\"eslot\":\"1\"}",1677175591,1543329,-1,19,2147483647],[1543330,21,453176,16432,1,0,"{\"epos\":\"2\",\"eslot\":\"2\"}",1677175591,1543329,-1,19,2147483647],[1543413,21,454106,16432,1,0,"{\"epos\":\"18\",\"eslot\":\"18\"}",1677175591,1543329,-1,19,2147483647],[1543414,21,454107,16432,1,0,"{\"epos\":\"19\",\"eslot\":\"19\"}",1677175591,1543329,-1,19,2147483647],[1543416,21,454114,16432,1,0,"{\"epos\":\"6\",\"eslot\":\"6\"}",1677175591,1543329,-1,19,2147483647],[1543417,21,454112,16432,1,0,"{\"epos\":\"7\",\"eslot\":\"7\"}",1677175591,1543329,-1,19,2147483647],[1543418,21,454105,16432,1,0,"{\"epos\":\"4\",\"eslot\":\"4\"}",1677175591,1543329,-1,19,2147483647],[1543419,21,454111,16432,1,0,"{\"epos\":\"8\",\"eslot\":\"8\"}",1677175591,1543329,-1,19,2147483647],[1543420,21,454113,16432,1,0,"{\"epos\":\"9\",\"eslot\":\"9\"}",1677175591,1543329,-1,19,2147483647],[1543421,21,454109,16432,1,0,"{\"epos\":\"5\",\"eslot\":\"5\"}",1677175591,1543329,-1,19,2147483647],[1543422,21,454110,16432,1,0,"{\"epos\":\"10\",\"eslot\":\"10\"}",1677175591,1543329,-1,19,2147483647],[1543423,21,454125,16432,1,0,"{\"epos\":\"11\",\"eslot\":\"11\"}",1677175591,1543329,-1,19,2147483647],[1543424,21,454123,16432,1,0,"{\"epos\":\"12\",\"eslot\":\"12\"}",1677175591,1543329,-1,19,2147483647],[1543425,21,454116,16432,1,0,"{\"epos\":\"13\",\"eslot\":\"13\"}",1677175591,1543329,-1,19,2147483647],[1543426,21,454121,16432,1,0,"{\"epos\":\"14\",\"eslot\":\"14\"}",1677175591,1543329,-1,19,2147483647],[1543427,21,454119,16432,1,0,"{\"epos\":\"3\",\"eslot\":\"3\"}",1677175591,1543329,-1,19,2147483647],[1543428,21,454115,16432,1,0,"{\"epos\":\"15\",\"eslot\":\"15\"}",1677175591,1543329,-1,19,2147483647],[1543429,21,454122,16432,1,0,"{\"epos\":\"16\",\"eslot\":\"16\"}",1677175591,1543329,-1,19,2147483647],[1543430,21,454120,16432,1,0,"{\"epos\":\"17\",\"eslot\":\"17\"}",1677175591,1543329,-1,19,2147483647],[1543187,1,454524,16432,1,0,"{\"epos\":\"0\",\"eslot\":\"0\",\"dlc\":1}",1677175591,1543351,-1,19,-1],[1543191,1,454522,16432,1,0,"{\"epos\":\"10\",\"eslot\":\"10\",\"dlc\":1}",1677175591,1543351,-1,19,-1]]],["422165",[[41601138,8,451845,422165,1,0,"{}",1679417318,2,-1,19,2147483647],[41601173,1,453412,422165,1,0,"{}",1679417318,4,-1,3,2147483647],[41601140,6,451866,422165,1,0,"{}",1679417318,6,-1,19,2147483647],[41601125,4,454504,422165,1,0,"{\"att\":{\"is_new\":{\"val\":\"0\"}},\"epos\":\"23\",\"eslot\":\"23\",\"dlc\":1}",1679417318,41601138,-1,19,-1],[41601143,9,453182,422165,1,0,"{\"epos\":\"1\",\"eslot\":\"1\"}",1679417318,41601138,-1,19,2147483647],[41601146,9,453179,422165,1,0,"{\"epos\":\"0\",\"eslot\":\"0\"}",1679417318,41601138,-1,19,2147483647],[41601147,9,453181,422165,1,0,"{\"epos\":\"2\",\"eslot\":\"2\"}",1679417318,41601138,-1,19,2147483647],[41601194,9,454103,422165,1,0,"{\"epos\":\"21\",\"eslot\":\"21\"}",1679417318,41601138,-1,19,2147483647],[41601195,9,454102,422165,1,0,"{\"epos\":\"22\",\"eslot\":\"22\"}",1679417318,41601138,-1,19,2147483647],[41601197,9,454089,422165,1,0,"{\"epos\":\"14\",\"eslot\":\"14\"}",1679417318,41601138,-1,19,2147483647],[41601198,9,454088,422165,1,0,"{\"epos\":\"15\",\"eslot\":\"15\"}",1679417318,41601138,-1,19,2147483647],[41601199,9,454082,422165,1,0,"{\"epos\":\"8\",\"eslot\":\"8\"}",1679417318,41601138,-1,19,2147483647],[41601200,9,454086,422165,1,0,"{\"epos\":\"16\",\"eslot\":\"16\"}",1679417318,41601138,-1,19,2147483647],[41601201,9,454085,422165 +(I) [20:48:08.534] [000013504]: WorldwideAutomatchService::OnStartComplete - detected successful game start +(I) [20:48:08.534] [000013504]: WorldwideAutomatchService::OnStartComplete - forcing pollcomplete event +(I) [20:48:08.534] [000013504]: GameApp::SetTargetState : new (Game) old (Uninitialized) +(I) [20:48:08.543] [000013504]: MOD - Setting player [0] race to: [203852] +(I) [20:48:08.544] [000013504]: MOD - Setting player [1] race to: [137123] +(I) [20:48:08.545] [000013504]: ModDllSetup: SetStatsGameUID=23239077 +(I) [20:48:08.545] [000013504]: GAME -- Scenario: data:scenarios\multiplayer\rural_town_2p_mkii\rural_town_2p_mkii +(I) [20:48:08.545] [000013504]: GAME -- Win Condition Qualified Name: 00000000000000000000000000000000:3318379781 +(I) [20:48:08.545] [000013504]: GAME -- Win Condition Name: VictoryPoint +(I) [20:48:08.545] [000013504]: GAME -- Human Player: 0 UMirinBrah? 16432 0 british_africa +(I) [20:48:08.545] [000013504]: GAME -- Human Player: 1 Mike 422165 1 germans +(I) [20:48:08.545] [000013504]: GameApp::SetState : new (LoadingGame) old (UnloadedGame) +(I) [20:48:09.030] [000013504]: WorldwideAutomatch2Service::OnPollComplete - I am peer 1, ihost:1, islocal:1 +(I) [20:48:09.030] [000013504]: WorldwideAutomatch2Service::OnPollComplete - All players in session and ready, automatch process complete +(I) [20:48:09.360] [000013504]: GameObj::StartGameObj - info, network session GUID set to [23239077]. +(I) [20:48:09.360] [000013608]: Loading step: [OnBeginLoad] +(I) [20:48:09.360] [000013608]: Loading step: [Assign Players] +(I) [20:48:09.360] [000013608]: Loading step: [FXReflection] +(I) [20:48:09.361] [000013608]: Loading step: [FXDataContext] +(I) [20:48:09.361] [000013608]: Loading step: [FX Texture Pack] +(I) [20:48:09.361] [000013608]: Loading step: [Run Havok Garbage Collection] +(I) [20:48:09.361] [000013608]: Loading step: [Flush Inventory On Application Exit] +(I) [20:48:09.361] [000013608]: Loading step: [Default World] +(I) [20:48:09.369] [000013608]: Loading step: [FX Command Function] +(I) [20:48:09.369] [000013608]: Loading step: [AnimatorCommandFunction] +(I) [20:48:09.369] [000013608]: Loading step: [MemShrink] +(I) [20:48:09.371] [000013608]: Loading step: [Sync Checking] +(I) [20:48:09.371] [000013608]: Loading step: [Tuning Variant] +(I) [20:48:09.371] [000013608]: Using scenario tuning variant [default] +(I) [20:48:09.371] [000013608]: Loading step: [Mod Packs] +(I) [20:48:09.371] [000013608]: Loading step: [SimVis System] +(I) [20:48:09.371] [000013608]: Loading step: [DefaultWorld] +(I) [20:48:09.371] [000013608]: Loading step: [Visual Physics ME] +(I) [20:48:09.371] [000013608]: Loading step: [Deferred Decal Manager] +(I) [20:48:09.371] [000013608]: Loading step: [FogVolumeManager] +(I) [20:48:09.371] [000013608]: Loading step: [Vehicle Physics Function] +(I) [20:48:09.371] [000013608]: Loading step: [Unit Occlusion Function] +(I) [20:48:09.371] [000013608]: Loading step: [Splat Function] +(I) [20:48:09.371] [000013608]: Loading step: [Grass Function] +(I) [20:48:09.371] [000013608]: Loading step: [Object Alpha Factor Function] +(I) [20:48:09.371] [000013608]: Loading step: [Renderable Managers] +(I) [20:48:09.371] [000013608]: Loading step: [Setup Skins] +(I) [20:48:09.371] [000013608]: Loading step: [AnimEventSetup] +(I) [20:48:09.371] [000013608]: Loading step: [Session Precache] +(I) [20:48:09.463] [000013608]: Loading step: [Precache core resources] +(I) [20:48:09.464] [000013608]: Loading step: [Precache EBPs] +(I) [20:48:09.464] [000013608]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [20:48:09.464] [000013608]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [20:48:09.464] [000013608]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [20:48:09.464] [000013608]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [20:48:09.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.571] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.913] [000013608]: Loading step: [Precache State Tree references] +(I) [20:48:09.942] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.942] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.942] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.942] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.942] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.942] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.942] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.942] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.942] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.942] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.942] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.942] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.942] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.942] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.942] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.942] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.942] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.942] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.942] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.942] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.942] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.942] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.942] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.942] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.942] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.942] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.942] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:48:09.970] [000013608]: Loading step: [Load Actions] +(I) [20:48:09.972] [000013608]: Loading step: [Load Resources from Precache] +(I) [20:48:10.201] [000019412]: RENDERING - new resize requested [2560, 1440] reason [WindowSizeEvent] +(I) [20:48:10.201] [000019412]: RENDERING - Starting compositor fullscreen transition [1] +(I) [20:48:10.201] [000019412]: RENDERING - Setting Fullscreen On +(I) [20:48:10.297] [000019412]: RENDERING - state Size [2560 x 1440], fullscreen size[2560 x 1440] +(I) [20:48:10.300] [000019412]: RENDERING - Finished compositor fullscreen transition [1] +(I) [20:48:10.300] [000019412]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [20:48:10.303] [000019412]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [20:48:10.303] [000019412]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [20:48:10.333] [000019412]: RENDERING - new resize requested [2578, 1487] reason [WindowSizeEvent] +(I) [20:48:10.333] [000019412]: RENDERING - resize request clobbering old request [2578, 1487] reason [WindowSizeEvent] +(I) [20:48:10.333] [000019412]: RENDERING - new resize requested [2560, 1440] reason [WindowSizeEvent] +(I) [20:48:10.333] [000019412]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [20:48:10.339] [000019412]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [20:48:10.339] [000019412]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [20:48:10.605] [000013608]: Loading step: [GEWorld] +(I) [20:48:10.605] [000013608]: GAME - InitializeGEWorld +(I) [20:48:10.754] [000013608]: Re-winding a compressed stream for file 'data:scenarios\multiplayer\rural_town_4p\rural_town_4p.scenario'. Expensive operation +(I) [20:48:11.007] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7309d3b8dd13b94c39d14a83123dc554ffd121065d89a92ff24007713a1d6a0e +(I) [20:48:11.416] [000013608]: Regenerating ImpassMap data... +(I) [20:48:11.640] [000013608]: Regenerating SimTerrainCoverMap data... +(I) [20:48:11.664] [000013608]: SimTerrainCoverMap generation took 0.023978 seconds. +(I) [20:48:12.068] [000013608]: Pathfinding::Regenerate()... +(I) [20:48:12.215] [000013608]: Pathfinding::Regenerate() Done. +(I) [20:48:12.575] [000013608]: GAME - CreateGEWorld in 1969 ms +(I) [20:48:12.575] [000013608]: SIM -- Setting SyncErrorChecking level to Low +(I) [20:48:12.575] [000013608]: Loading step: [Load Resources from GEWorld] +(I) [20:48:12.627] [000013608]: Loading step: [Sound Banks] +(I) [20:48:12.627] [000013608]: Loading step: [Session] +(I) [20:48:12.627] [000013608]: GAME - SessionSetup +(I) [20:48:12.628] [000013608]: GAME - SessionSetup finished in 1 ms +(I) [20:48:12.628] [000013608]: Loading step: [Player Setup] +(I) [20:48:12.638] [000013608]: GAME -- Recording game +(I) [20:48:12.638] [000013608]: Loading step: [Scenario Lua System] +(I) [20:48:12.674] [000013608]: Loading step: [Team Colour Init] +(I) [20:48:12.674] [000013608]: Loading step: [Race Precaching Event Listener Registration] +(I) [20:48:12.674] [000013608]: Loading step: [Simulation] +(I) [20:48:12.699] [000013608]: LoadWinCondition: - [winconditions\mode_victorypoint] succeeded. +(I) [20:48:12.892] [000013608]: Player [] killed on game tick [0] due to [unused player] +(I) [20:48:12.892] [000013608]: Player [] killed on game tick [0] due to [unused player] +(I) [20:48:12.892] [000013608]: Player [] killed on game tick [0] due to [unused player] +(I) [20:48:12.892] [000013608]: Player [] killed on game tick [0] due to [unused player] +(I) [20:48:12.892] [000013608]: Player [] killed on game tick [0] due to [unused player] +(I) [20:48:12.892] [000013608]: Player [] killed on game tick [0] due to [unused player] +(I) [20:48:12.892] [000013608]: Player [] killed on game tick [0] due to [unused player] +(I) [20:48:12.892] [000013608]: Player [] killed on game tick [0] due to [unused player] +(I) [20:48:12.892] [000013608]: Player [] killed on game tick [0] due to [unused player] +(I) [20:48:12.892] [000013608]: Player [] killed on game tick [0] due to [unused player] +(I) [20:48:12.892] [000013608]: Player [] killed on game tick [0] due to [unused player] +(I) [20:48:12.892] [000013608]: Player [] killed on game tick [0] due to [unused player] +(I) [20:48:12.892] [000013608]: Player [] killed on game tick [0] due to [unused player] +(I) [20:48:12.892] [000013608]: Player [] killed on game tick [0] due to [unused player] +(I) [20:48:13.424] [000013608]: Loading step: [GameUICore System] +(I) [20:48:13.434] [000013608]: Loading step: [UI System] +(I) [20:48:13.434] [000013608]: Loading step: [LUA] +(I) [20:48:13.434] [000013608]: Loading step: [Game Event Listener Registration] +(I) [20:48:13.434] [000013608]: Loading step: [CPU AI] +(I) [20:48:13.442] [000013608]: Loading step: [Scar Init] +(I) [20:48:13.442] [000013608]: Loading step: [FX System] +(I) [20:48:13.442] [000013608]: Loading step: [Cheat Menu] +(I) [20:48:13.446] [000013608]: Loading step: [Scar Start] +(I) [20:48:13.447] [000013608]: Loading step: [Load resources] +(I) [20:48:13.448] [000013608]: Loading step: [PreDisplay] +(I) [20:48:13.448] [000013608]: Loading step: [Free Loading Data] +(I) [20:48:13.448] [000013608]: PreloadResources took 0ms. +(I) [20:48:13.448] [000013608]: Loading step: [MemShrink] +(I) [20:48:13.448] [000013608]: Loading step: [Flush Inventory] +(I) [20:48:13.472] [000013608]: Loading step: [Resolve Impasse Blockers] +(I) [20:48:13.472] [000013608]: Loading step: [Convert OOB Static Entities to Visual Only Objects] +(I) [20:48:13.472] [000013608]: Loading step: [DefaultWorld Begin Play] +(I) [20:48:13.532] [000013608]: Loading step: [Preparing game] +(I) [20:48:13.660] [000013608]: Loading step: [Start Renderer] +(I) [20:48:13.660] [000013608]: Loading step: [FrontEnd simulation initialization] +(I) [20:48:13.660] [000013608]: Loading step: [WPFGFrontEnd loading] +(I) [20:48:14.090] [000013608]: Loading step: [OnEndLoad] +(I) [20:48:14.171] [000013504]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2494037434]. +(I) [20:48:16.001] [000013504]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2494037434]. +(I) [20:48:18.000] [000013504]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2494037434]. +(I) [20:48:19.429] [000019412]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [None] +(I) [20:48:19.438] [000019412]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [None] +(I) [20:48:19.438] [000019412]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [20:48:20.006] [000013504]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2494037434]. +(I) [20:48:21.738] [000019412]: RENDERING - new resize requested [2560, 1440] reason [WindowSizeEvent] +(I) [20:48:21.738] [000019412]: RENDERING - Starting compositor fullscreen transition [1] +(I) [20:48:21.738] [000019412]: RENDERING - Setting Fullscreen On +(I) [20:48:21.834] [000019412]: RENDERING - state Size [2560 x 1440], fullscreen size[2560 x 1440] +(I) [20:48:21.836] [000019412]: RENDERING - Finished compositor fullscreen transition [1] +(I) [20:48:21.836] [000019412]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [20:48:21.839] [000019412]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [20:48:21.839] [000019412]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [20:48:21.864] [000019412]: RENDERING - new resize requested [2578, 1487] reason [WindowSizeEvent] +(I) [20:48:21.864] [000019412]: RENDERING - resize request clobbering old request [2578, 1487] reason [WindowSizeEvent] +(I) [20:48:21.864] [000019412]: RENDERING - new resize requested [2560, 1440] reason [WindowSizeEvent] +(I) [20:48:21.864] [000019412]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [20:48:21.869] [000019412]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [20:48:21.869] [000019412]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [20:48:22.004] [000013504]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2494037434]. +(I) [20:48:24.000] [000013504]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [2494037434]. +(I) [20:48:24.049] [000013504]: LoadArbitrator::UpdateLoadProgress - info, player "[0:2]" finished loading with checksum [2494037434]. +(I) [20:48:24.051] [000013504]: PerformanceRecorder::StartRecording for game size 2 +(I) [20:48:24.051] [000013504]: GAME -- Starting mission: data:scenarios\multiplayer\rural_town_2p_mkii\rural_town_2p_mkii +(I) [20:48:24.051] [000013504]: MEM -- available page 8179 mb, total page 40880 mb +(I) [20:48:24.056] [000013504]: GameApp::SetState : new (Game) old (LoadingGame) +(I) [20:48:24.056] [000013504]: GameApp::SetTargetState : new (Uninitialized) old (Game) +(I) [20:48:27.835] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f37ae1203b3b8276736c40c840e96155ec583c90e85881500b17e3031d8c6c50 +(I) [20:48:30.000] [000013504]: Local user framerate is [0.000000] +(I) [20:48:30.000] [000013504]: Local user MinDelay=[1ms], MaxDelay=[30ms], AvgDelay=[17ms], minRTT[77ms], maxRTT[484ms], avgRTT[123ms] +(I) [20:48:47.014] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=dffe4cc3f357863965e8f13e8c7218b8d552f984f4ea1fb79908d2ad245ee5df +(I) [20:48:51.004] [000013504]: Local user framerate is [140.828873] +(I) [20:48:51.004] [000013504]: Local user MinDelay=[1ms], MaxDelay=[77ms], AvgDelay=[31ms], minRTT[43ms], maxRTT[484ms], avgRTT[89ms] +(I) [20:48:52.007] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=92/24, mdat=220/440, voip=0/0, rchk=0/0, nudg=2/8, Thdr=0/0, Peer=18/32, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=18/16, lb_p=26/7, lb_c=0/0, cast=0/0, cdat=75/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:49:01.006] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=13/0, mdat=72/144, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=5/1, lb_c=0/0, cast=0/0, cdat=13/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:49:10.011] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e0acc01fe3ac549af0b43d198e99920ca4447c7382e8377318516313ad83b995 +(I) [20:49:12.012] [000013504]: Local user framerate is [140.092987] +(I) [20:49:12.012] [000013504]: Local user MinDelay=[1ms], MaxDelay=[77ms], AvgDelay=[35ms], minRTT[43ms], maxRTT[484ms], avgRTT[83ms] +(I) [20:49:30.012] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=91ce4c72ce1b52c74c414e3579285a1c0f4579a5fb3d779337112d6349c34aa8 +(I) [20:49:33.001] [000013504]: Local user framerate is [141.385849] +(I) [20:49:33.001] [000013504]: Local user MinDelay=[35ms], MaxDelay=[51ms], AvgDelay=[43ms], minRTT[54ms], maxRTT[79ms], avgRTT[70ms] +(I) [20:49:53.004] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=153/0, mdat=416/832, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=26/7, lb_c=0/0, cast=0/0, cdat=149/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:49:54.000] [000013504]: Local user framerate is [141.621658] +(I) [20:49:54.000] [000013504]: Local user MinDelay=[35ms], MaxDelay=[53ms], AvgDelay=[42ms], minRTT[54ms], maxRTT[135ms], avgRTT[73ms] +(I) [20:49:59.795] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=925c74d0a36eba552233dc5a57092691954b282029ad00a62a897cb288cc0a60 +(I) [20:50:02.000] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=25/0, mdat=72/144, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=4/1, lb_c=0/0, cast=0/0, cdat=24/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:50:15.003] [000013504]: Local user framerate is [141.707489] +(I) [20:50:15.003] [000013504]: Local user MinDelay=[32ms], MaxDelay=[53ms], AvgDelay=[42ms], minRTT[54ms], maxRTT[135ms], avgRTT[73ms] +(I) [20:50:19.011] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=945cfbf32229bf0421dfd07c57783df3b1339a1a3fa906b62980dd2d8a97e590 +(I) [20:50:36.000] [000013504]: Local user framerate is [140.421906] +(I) [20:50:36.000] [000013504]: Local user MinDelay=[36ms], MaxDelay=[50ms], AvgDelay=[42ms], minRTT[54ms], maxRTT[149ms], avgRTT[76ms] +(I) [20:50:40.012] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=bff8e57564324adb3af55057d7180dbc2783a22706d10d11d0570122dfeed520 +(I) [20:50:54.009] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=165/0, mdat=416/832, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=26/7, lb_c=0/0, cast=0/0, cdat=154/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:50:57.001] [000013504]: Local user framerate is [140.699997] +(I) [20:50:57.001] [000013504]: Local user MinDelay=[35ms], MaxDelay=[53ms], AvgDelay=[42ms], minRTT[26ms], maxRTT[149ms], avgRTT[75ms] +(I) [20:50:59.210] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ff1ac384c8458f6642e446beaf48bb319042a2d6f30bcffd287cf49e37e581fd +(I) [20:51:03.006] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=32/0, mdat=71/142, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=4/1, lb_c=0/0, cast=0/0, cdat=31/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:51:08.516] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e274f51a6c153eddd78f4e82a4a7cd633b27235606b5b9b078172890ddb6c047 +(I) [20:51:18.003] [000013504]: Local user framerate is [140.649994] +(I) [20:51:18.003] [000013504]: Local user MinDelay=[35ms], MaxDelay=[53ms], AvgDelay=[42ms], minRTT[26ms], maxRTT[162ms], avgRTT[75ms] +(I) [20:51:28.009] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=85b5f33caec16eb070f1787ded6f6997eeaaa541f2c5f222a0760e6d9d6b1284 +(I) [20:51:36.717] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1a82ee5264ec7317f2676080eb774505a8e1a6a59b3d1e79c01fc6f4f4a1012e +(I) [20:51:39.001] [000013504]: Local user framerate is [141.007690] +(I) [20:51:39.001] [000013504]: Local user MinDelay=[32ms], MaxDelay=[54ms], AvgDelay=[43ms], minRTT[25ms], maxRTT[144ms], avgRTT[78ms] +(I) [20:51:46.648] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=34bafe1ff6a0b23ec5949ba3c3b812e58eadcb840c0c2e17572a7d42e0a486c3 +(I) [20:51:48.663] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=243adbf469f6bcbb4d71f6676cb8722ef30ea5c9a0eece5ac2523fce7c28924b +(I) [20:51:55.007] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=180/0, mdat=416/832, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=26/7, lb_c=0/0, cast=0/0, cdat=170/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:52:00.003] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cc10f203a275d10ba610dbfb7ab99abb5c3870755a0c200c3699194103b56eee +(I) [20:52:00.004] [000013504]: Local user framerate is [139.958008] +(I) [20:52:00.004] [000013504]: Local user MinDelay=[32ms], MaxDelay=[59ms], AvgDelay=[43ms], minRTT[25ms], maxRTT[158ms], avgRTT[77ms] +(I) [20:52:01.806] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=702ac271e5770ffb36b10ba3143bb1743613dcfc4aeb680aa655d3adccad9c88 +(I) [20:52:04.002] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=26/0, mdat=72/144, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=5/1, lb_c=0/0, cast=0/0, cdat=25/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:52:21.005] [000013504]: Local user framerate is [139.479080] +(I) [20:52:21.005] [000013504]: Local user MinDelay=[32ms], MaxDelay=[59ms], AvgDelay=[44ms], minRTT[22ms], maxRTT[158ms], avgRTT[78ms] +(I) [20:52:21.012] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6e45b3f9dc49f475eeec1e04a625db8dd1d03b9f96d8fe5b522a94f0febdabb9 +(I) [20:52:27.192] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=36c4147cac1fe20b4ce00a75519d03047d85555e1aec791b0a948517c6455292 +(I) [20:52:36.537] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0dfe03911438eefc83d144cf2e966b7059eda8d6885a13be1eb335736a9c39cb +(I) [20:52:42.000] [000013504]: Local user framerate is [140.699997] +(I) [20:52:42.000] [000013504]: Local user MinDelay=[36ms], MaxDelay=[58ms], AvgDelay=[47ms], minRTT[34ms], maxRTT[150ms], avgRTT[76ms] +(I) [20:52:53.886] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b1589f882a7abb76d8c67a21f0de6839600f27fbc7048e4e4525ec462596600c +(I) [20:52:56.002] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=185/0, mdat=416/832, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=26/7, lb_c=0/0, cast=0/0, cdat=166/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:52:59.682] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=766d3e26b4376cbca475d87994445ce10119ae0c78c79c49fb11d7bd9b88e598 +(I) [20:53:01.592] [000023384]: Read bytes [0,"MatchReceivedChatMessage",16432,[422165,"that supression sux","that supression sux",2,5809769]] +(I) [20:53:01.594] [000013504]: Received chat message { that supression sux } +(I) [20:53:01.594] [000013504]: Starting FilterChatJob for message { that supression sux } +(I) [20:53:01.625] [000013504]: Posting chat event from FilterChatJob for message { that supression sux } +(I) [20:53:02.111] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.111] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.111] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.111] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.111] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.111] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.111] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.111] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.111] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.111] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.111] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.111] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.111] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.111] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.111] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.111] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.111] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.111] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.111] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.111] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.111] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.111] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.111] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.111] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.111] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.111] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.111] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.111] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.111] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.401] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.401] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.401] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.401] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.401] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.401] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.401] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.401] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.401] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.401] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.401] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.401] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.401] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.401] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.401] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.401] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.401] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.401] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.401] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.401] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.401] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.401] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.401] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.401] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.401] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.401] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:02.401] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:53:03.005] [000013504]: Local user framerate is [139.000000] +(I) [20:53:03.005] [000013504]: Local user MinDelay=[36ms], MaxDelay=[58ms], AvgDelay=[47ms], minRTT[34ms], maxRTT[151ms], avgRTT[72ms] +(I) [20:53:05.002] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=34/0, mdat=72/144, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=4/1, lb_c=0/0, cast=0/0, cdat=33/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:53:07.183] [000013504]: Sent match chat message { green cover omg } +(I) [20:53:07.372] [000013504]: Response received after sending match chat message { green cover omg } +(I) [20:53:11.263] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=24530e8648aff5612d8e506862d5a1c6d942a7ba7931cc184eeb834be71f25c0 +(I) [20:53:22.768] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b070fd690ab68c9a8bc83dbb8f4aa0602fea5bec5797184f4968ede3d0cfb738 +(I) [20:53:24.000] [000013504]: Local user framerate is [138.643051] +(I) [20:53:24.000] [000013504]: Local user MinDelay=[35ms], MaxDelay=[64ms], AvgDelay=[46ms], minRTT[34ms], maxRTT[151ms], avgRTT[72ms] +(I) [20:53:30.295] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1a290be85aa1af922ae06439abe3d70b160a0e72f90bd7c3b36739c26ef126be +(I) [20:53:44.960] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=702ab98f46be9f7ce29b94e3a9b0e065c827ef7d45be3d16e9d4460fe21e6b58 +(I) [20:53:45.004] [000013504]: Local user framerate is [138.458466] +(I) [20:53:45.004] [000013504]: Local user MinDelay=[35ms], MaxDelay=[52ms], AvgDelay=[44ms], minRTT[40ms], maxRTT[150ms], avgRTT[74ms] +(I) [20:53:53.047] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=676f977fd1b3955d5da97221ac623d15338e31fc8d6a713bbcea228eab40f6bf +(I) [20:53:57.006] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=174/0, mdat=416/832, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=26/7, lb_c=0/0, cast=0/0, cdat=164/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:54:06.001] [000013504]: Local user framerate is [140.414886] +(I) [20:54:06.001] [000013504]: Local user MinDelay=[35ms], MaxDelay=[52ms], AvgDelay=[43ms], minRTT[40ms], maxRTT[153ms], avgRTT[75ms] +(I) [20:54:06.005] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=34/0, mdat=72/144, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=4/1, lb_c=0/0, cast=0/0, cdat=33/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:54:09.591] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=38218d6564dffdcbe2a5219a5984eb8d09f91b0c7e9bc1e6b381a4e905a51801 +(I) [20:54:27.003] [000013504]: Local user framerate is [139.600006] +(I) [20:54:27.003] [000013504]: Local user MinDelay=[35ms], MaxDelay=[50ms], AvgDelay=[42ms], minRTT[55ms], maxRTT[79ms], avgRTT[69ms] +(I) [20:54:29.013] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a09c62c153f417369832a23ee2d1b9d22ceba67502a48ca2dd4ecae45a8e1722 +(I) [20:54:48.003] [000013504]: Local user framerate is [140.042984] +(I) [20:54:48.003] [000013504]: Local user MinDelay=[35ms], MaxDelay=[57ms], AvgDelay=[44ms], minRTT[38ms], maxRTT[161ms], avgRTT[72ms] +(I) [20:54:51.011] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6c922722491b26a0f75f9e4107024b13e8614778732d08356573ab9839bd76c5 +(I) [20:54:58.006] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=173/0, mdat=416/832, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=28/8, lb_c=0/0, cast=0/0, cdat=166/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:54:59.090] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5ca9cb5b63250f49661d416a24fcc9afa9c2fcaa6ae6144428513e429a3838e5 +(I) [20:55:07.009] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=40/0, mdat=72/144, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=4/1, lb_c=0/0, cast=0/0, cdat=35/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:55:07.558] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=98cf377d333d6348fe61465fad879e9ca8f5dfdf3aa442424dd38d121303f8de +(I) [20:55:09.005] [000013504]: Local user framerate is [138.508438] +(I) [20:55:09.005] [000013504]: Local user MinDelay=[21ms], MaxDelay=[57ms], AvgDelay=[44ms], minRTT[23ms], maxRTT[161ms], avgRTT[73ms] +(I) [20:55:19.314] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c24388f93dc026ceb813cb1c931eb457d714341e4911dcdf88b235f17ecbc894 +(I) [20:55:26.424] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=02a34268b3c3f80f74831baeaa582e85cc0738951011a6ce7de5d10727fb10c1 +(I) [20:55:30.000] [000013504]: Local user framerate is [138.350006] +(I) [20:55:30.000] [000013504]: Local user MinDelay=[29ms], MaxDelay=[52ms], AvgDelay=[43ms], minRTT[33ms], maxRTT[148ms], avgRTT[83ms] +(I) [20:55:33.481] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5c7f5a69a8b96ea65b1ff7580751f81a1282d72db9c2804d404d3662eccc9f18 +(I) [20:55:38.790] [000013504]: GameObj::SchedulePeerForDestruction - info, frame [3472], peer for station [2] scheduled for destruction on frame 3473. +(I) [20:55:38.790] [000013504]: GameObj::SchedulePeerForDestruction - handling UI call to inform user of drop. +(I) [20:55:38.790] [000013504]: GAME -- Frame 3472 - SchedulePeerForDestruction - peer 1001 scheduledfor destruction +(I) [20:55:38.808] [000013504]: Picked to migrate AI to network station id: 1 +(I) [20:55:38.864] [000013504]: GameObj - AI Simulation for player [1001] migrated to local station [1]. +(I) [20:55:38.864] [000013504]: GameObj::KillAllDropped - Processing disconnected player [1001], set to migrate to station [1]. +(I) [20:55:39.042] [000013504]: MOD -- Player Mike set to AI Type: Remote Human Takeover (frame 3474) (CmdAI) +(I) [20:55:39.058] [000013504]: Movie Manager -- No movies with locale [fr] exist on disk. Switching to fallback locale [en]. +(I) [20:55:39.081] [000013504]: Movie Manager -- No movies with locale [fr] exist on disk. Switching to fallback locale [en]. +(I) [20:55:42.127] [000013504]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [20:55:42.127] [000013504]: WorldwidePartyService::PeerRemove, Removing peer ID: 2 +(I) [20:55:42.127] [000013504]: peerremove - peerIDRemoved=422165, reasonID=1000, reason debug hint - MatchSetup::Disconnect +(I) [20:55:42.127] [000013504]: ServerSynchronization::OnDestroyedPeerEvent - info, drop event received for remote station [2]. +(I) [20:55:42.127] [000013504]: GameObjController - OnMatchEvent: event type 1 +(I) [20:55:42.134] [000013504]: Sending matchinfo change #46 +(I) [20:55:42.134] [000013504]: GameObjController - OnMatchEvent: event type 6 +(E) [20:55:42.252] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [20:55:43.798] [000013504]: MOD -- Game Over at frame 3512 +(I) [20:55:43.831] [000013504]: Report sent for profileID[16432] -> race=[203852], result=[1], XP Gain=[2591] +(I) [20:55:43.831] [000013504]: Report sent for profileID[422165] -> race=[137123], result=[0], XP Gain=[1543] +(I) [20:55:43.845] [000013504]: Party::SetStatus - S_CONFIGURING +(I) [20:55:43.855] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=712023f0831cddaa3bec422998d62f1df0b37bb853827a89e611a9a582bce9b9 +(I) [20:55:43.855] [000013504]: Sending matchinfo change #14 +(E) [20:55:43.982] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [20:55:44.671] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=54616e3998d1bc0e5f75255746266c5f862b8835a5434264cbe86c463ddddab2 +(I) [20:55:44.840] [000013504]: MPMatchSetup::OnMatchEvent - MET_ReportResults - result [0] +(I) [20:55:44.840] [000013504]: GameObjController - OnMatchEvent: event type 9 +(I) [20:55:45.046] [000023384]: Read bytes [0,"AvatarStatsUpdatedMessage",16432,[[[4,16432,77,"",1680461744]]]] +(I) [20:55:45.046] [000023384]: Read bytes [0,"AvatarStatsUpdatedMessage",16432,[[[5,16432,63,"",1680461744]]]] +(I) [20:55:45.046] [000023384]: Read bytes [0,"AvatarStatsUpdatedMessage",16432,[[[6,16432,86165,"",1680461744]]]] +(I) [20:55:45.046] [000023384]: Read bytes [0,"AvatarStatsUpdatedMessage",16432,[[[14,16432,71176,"",1680461744]]]] +(I) [20:55:45.046] [000023384]: Read bytes [0,"AvatarUpdateMessage",16432,[[1399,16432,"/steam/76561198005864560","","UMirinBrah?","",11893,1251,1251,2074389,null,"76561198005864560",3,[]]]] +(I) [20:55:45.046] [000023384]: Read bytes [0,"GameResultNotificationMessage",16432,[[[16432,20,203852,0,[0],11893,[["unitprod",28],["vvetrank",1],["cabil",0],["dmgdone",1527],["plost",6],["svetrank",0],["reqmax",0],["cpearn",2],["reqspnt",0],["powearn",0],["blost",0],["elitekill",0],["edeaths",13],["structdmg",0],["pcap",15],["inactperiod",24],["lowintperiod",0],["precap",5],["sqkill",1],["popmax",0],["powspnt",0],["sqprod",7],["bprod",8],["svetxp",0],["vabnd",0],["addonkill",18],["totalcmds",328],["gammaspnt",0],["vkill",0],["objdmh",0],["abil",5],["sqlost",0],["vcap",0],["vlost",0],["gt",439],["upg",38],["vvetxp",800],["reqearn",0],["vp1",0],["vp0",0],["erein",8],["cflags",0],["wpnpu",0],["ekills",18],["powmax",0],["vprod",0]],0,10,[],null,[],[],[],[],[],[]],[422165,20,137123,1,[0],323553,[["unitprod",29],["vvetrank",1],["cabil",0],["dmgdone",1118],["plost",5],["svetrank",0],["reqmax",0],["cpearn",3],["reqspnt",0],["powearn",0],["blost",1],["elitekill",-1],["edeaths",18],["structdmg",0],["pcap",10],["inactperiod",13],["lowintperiod",0],["precap",6],["sqkill",0],["popmax",0],["powspnt",0],["sqprod",6],["bprod",10],["svetxp",0],["vabnd",0],["addonkill",13],["totalcmds",380],["gammaspnt",0],["vkill",0],["objdmh",0],["abil",3],["sqlost",1],["vcap",0],["vlost",0],["gt",434],["upg",22],["vvetxp",600],["reqearn",0],["vp1",0],["vp0",0],["erein",9],["cflags",0],["wpnpu",0],["ekills",12],["powmax",0],["vprod",0]],0,0,[],null,[],[],[],[],[],[]]],[[11893,2130257,49,13,1,0,0,49,2263,20,1074,13,1444,1680461744],[323553,2130261,17,16,-1,0,0,849,2854,419,1502,6,1099,1680461744]],[[4,16432,77,"",1680461057],[5,16432,63,"",1680446294],[6,16432,86165,"",1680461057],[14,16432,71176,"",1680461057],[7,422165,35,"",1680125847],[9,422165,37615,"",1680125847],[15,422165,34715,"",1680125847]],5809769,"",[]]] +(I) [20:55:45.050] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:55:45.050] [000013504]: RNT_StatsUpdate: Win notification, profileID 16432, race =203852, level=13, ranking=49 +(I) [20:55:45.050] [000013504]: RNT_StatsUpdate: Loss notification, profileID 422165, race =137123, level=6, ranking=849 +(I) [20:55:45.172] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=610fb4f6ec36396eb736343c1d2915f983e5b87c73318f8c5a0a10648b0f621b +(I) [20:55:45.565] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:55:45.565] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:55:45.565] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:55:45.565] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:55:45.565] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:55:45.565] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:55:45.565] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:55:45.565] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:55:45.565] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:55:45.565] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:55:45.565] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:55:45.565] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:55:45.565] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:55:45.565] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:55:45.565] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:55:45.565] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:55:45.565] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:55:45.565] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:55:45.565] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:55:45.565] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:55:45.565] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:55:45.565] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:55:45.565] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:55:45.565] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:55:45.565] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:55:45.565] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:55:45.565] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:55:45.565] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:55:45.565] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:55:47.068] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:55:47.068] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:55:47.328] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:55:47.342] [000013504]: GetPartyStatsByID found 1 teams for user ID 16432 +(I) [20:55:57.630] [000013504]: GameApp::SetTargetState : new (UnloadedGame) old (Uninitialized) +(I) [20:55:57.640] [000013504]: GameApp::SetState : new (UnloadingGame) old (Game) +(I) [20:55:58.657] [000013504]: GameObj::ShutdownGameObj +(I) [20:55:58.657] [000013504]: GetMaxFrameTimeFromProfile: players=2 expected FPS=100.000000, bars=0, max avg=0.000, sd=0.000, 0 samples = +(I) [20:55:58.657] [000013504]: PerformanceRecorder::EndRecording - game size=2, max average=0.007481, worst frame=0.010000 +(I) [20:55:58.657] [000013504]: Recording: No [2 players] + +(I) [20:55:58.657] [000013504]: Max/Avg: 0.01, 0.01 sec (fps=133.68, 146.30) (22 samples) + +(I) [20:55:58.657] [000013504]: Bars: 0 + +(I) [20:55:58.657] [000013504]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_seconds_played] +(I) [20:55:58.657] [000013504]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_units_produced] +(I) [20:55:58.657] [000013504]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_units_killed] +(I) [20:55:58.657] [000013504]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_units_lost] +(I) [20:55:58.668] [000013504]: StatArtWarningsCount 0 +(I) [20:55:58.668] [000013504]: StatDataWarningsCount 0 +(I) [20:55:59.004] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=1/0, drop=0/2, data=134/4, mdat=294/588, voip=0/0, rchk=0/0, nudg=1/0, Thdr=0/0, Peer=4/6, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=4/3, lb_p=30/7, lb_c=0/0, cast=0/0, cdat=119/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=1/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [20:55:59.168] [000013504]: GameApp::SetState : new (UnloadedGame) old (UnloadingGame) +(I) [20:55:59.168] [000013504]: GameApp::SetTargetState : new (Uninitialized) old (UnloadedGame) +(I) [20:55:59.187] [000013504]: SessionID : 58a669 - Disconnect called with reasonID 1000 - MatchSetup::Disconnect +(I) [20:55:59.187] [000013504]: MatchSetupManager: Removed queued match [rural_town_2p_mkii] Queue is now [0] +(I) [20:55:59.187] [000013504]: SessionID : 58a669 - Disconnect called with reasonID 1000 - MatchSetup::Disconnect +(I) [20:55:59.194] [000013504]: Disconnect process already running +(I) [20:55:59.196] [000013504]: SessionID : 58a50f - Disconnect called with reasonID 1000 - Destroying Party +(E) [20:55:59.218] [000013504]: SetVisible called while !IsConnected +(E) [20:55:59.230] [000013504]: SetVisible called while !IsConnected +(I) [20:55:59.890] [000013504]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [20:55:59.890] [000013504]: WorldwidePartyService::PeerRemove, Removing peer ID: 1 +(I) [20:55:59.890] [000013504]: peerremove - peerIDRemoved=16432, reasonID=1000, reason debug hint - MatchSetup::Disconnect +(E) [20:55:59.891] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:55:59.902] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:55:59.913] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:55:59.924] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:55:59.935] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:55:59.946] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:55:59.957] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:55:59.968] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:55:59.978] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:55:59.989] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.000] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.011] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.022] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.033] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.044] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.055] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.066] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.076] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.087] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.098] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.109] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.120] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.131] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.142] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.153] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [20:56:00.158] [000013504]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [20:56:00.158] [000013504]: WorldwidePartyService::PeerRemove, Removing peer ID: 1 +(I) [20:56:00.158] [000013504]: peerremove - peerIDRemoved=16432, reasonID=1000, reason debug hint - Destroying Party +(E) [20:56:00.164] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.164] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.175] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.175] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.185] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.185] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.196] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.196] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.207] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.207] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.218] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.218] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.229] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.229] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.240] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.240] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.251] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.251] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.262] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.262] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.273] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.273] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.283] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.283] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.294] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.294] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.305] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.305] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.316] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.316] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.327] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.327] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.338] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.338] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.348] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.348] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.359] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.359] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.370] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.370] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.381] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.381] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.392] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.392] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.403] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.403] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [20:56:00.410] [000013504]: PeerRemoveAll - flushing local session peer data +(I) [20:56:00.410] [000013504]: LeaveSessionInternal - no action taken, needLeave=0, service=0 +(I) [20:56:00.410] [000013504]: Destroyed Matchinfo +(E) [20:56:00.410] [000013504]: Socks::Free: Socket 0/6352 did not close properly before being freed. +(I) [20:56:00.410] [000013504]: OnDestroyPartyNotification - partyID = 5809769, prevID = -1 +(I) [20:56:00.410] [000013504]: OnDestroyPartyNotification - partyID = 5809769, prevID = -1 +(E) [20:56:00.414] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.425] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.436] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.447] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.458] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.469] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.480] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.491] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.502] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.513] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.523] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.534] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.545] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.556] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.567] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.578] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.589] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.600] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.611] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.622] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [20:56:00.633] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [20:56:00.635] [000013504]: PeerRemoveAll - flushing local session peer data +(I) [20:56:00.635] [000013504]: LeaveSessionInternal - no action taken, needLeave=0, service=0 +(I) [20:56:00.635] [000013504]: Destroyed Matchinfo +(E) [20:56:00.635] [000013504]: Socks::Free: Socket 0/11176 did not close properly before being freed. +(I) [20:56:00.635] [000013504]: OnDestroyPartyNotification - partyID = 5809423, prevID = -1 +(I) [20:56:00.635] [000013504]: OnDestroyPartyNotification - partyID = 5809423, prevID = -1 +(I) [20:56:03.008] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=788759b8a0d35b590a729ee96abead53243b2aef7a194e533ea48fd892414236 +(I) [20:57:59.579] [000023384]: Read bytes [0,"AvatarUpdateMessage",16432,[[1015,53758,"/steam/76561198010453859","","Seek & Destroy","",33285,1291,1291,2074389,null,"76561198010453859",3,[]]]] +(I) [20:57:59.584] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:33.756] [000023384]: Read bytes [0,"PresenceMessage",16432,[[1016,53758,"/steam/76561198010453859","","Seek & Destroy","",33285,1291,1291,2074389,null,"76561198010453859",3,[],2,"En ligne",[[1409823,"5807678"]]]]] +(I) [20:58:33.760] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.266] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.266] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.266] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.266] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.266] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.266] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.266] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.266] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.266] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.266] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.266] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.266] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.266] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.266] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.266] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.266] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.266] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.266] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.266] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.266] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.266] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.266] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.266] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.266] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.266] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.266] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.266] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.266] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.266] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.560] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.560] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.560] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.560] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.560] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.560] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.560] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.560] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.560] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.560] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.560] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.560] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.560] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.560] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.560] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.560] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.560] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.560] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.560] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.560] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:34.560] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [20:58:54.008] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=778d14dff743c3a3556f1cadb7624779242e899ac300923cfe7910f6a6b51ada +(I) [21:00:15.544] [000023384]: Read bytes [0,"PresenceMessage",16432,[[1017,53758,"/steam/76561198010453859","","Seek & Destroy","",33285,1291,1291,2074389,null,"76561198010453859",3,[],1409814,"Parcourt les parties",[[1409823,""]]]]] +(I) [21:00:15.544] [000023384]: Read bytes [0,"MatchHostedMessage",16432,[[5811204,109775243177546097,"","0",53758,0,"unnamed_session","unnamed_session",1,"torrente_4p_mkiii","eNqtk99vmzAQx/e3+HWVRoCGJFIf6NiqaF2LSt+mCTnmQk8BG9mmGav432sbQsi0vY0Hy/f9+H5wPr+ROq9p89w1QDbelbGOyD8LXqBGwb9BRzZBsFgF0TpaLSwuaQ0J7vfI2kob6kT2AlSr0TDhMk2lvheM2iBqDGw9swagIBv/z0SPzXjyzQDhjAzYpKlhnysbF3mZS1CilQwcHc7PNa+/mnw0sgPo+cFJufa8vu9tLXSHFepuKGOst+WoL4WmlLSAC01SXog6G/5q6UW+F/qBI5UwWYqTK1oe+GG4WkRDkzR7ce0lZLJNO/ZYfq1oaYrzV0sLVCX0hU7SMo7jJDRL/NEu/8WOb27OdaSmlaDT27utqZp8st9x4s2DuUcjayElcA152OT1AREdr2gH8tkV+uPn6HAHPMPfxif01+F6Gfnr6zO5p51o9d/ZLYr6H26pS+TmbDZ3BjzNLsQ7y4+vICUWMLQyoZoOs1a4HSH9rFYGnEoUw5twoWlVieOQ8ssvDVyZAUgpO6g5f4Kmogxq05Q5q0VhzYsJHzVr9bMzCTTAC+AMwfXPMRO029Pdlr+ihm1yGphRfgB9FNJ4KnYiqBLYteV3e5P2KXx4B5pSTN4=",0,16,"eNrtVltvo0YU7m/xc7YahrAbIu1DHAOGtSfhOjBVH7ilYAZCY4yNV/3vHQZ7jbONqkq7VSLlAc3teM453/m+ORbgxW9fJ/XT40NOU716ePw1TybXkvhJurqYrJuwyR8rfTa5Fi4mTRqW/RRcTB7C+HgALyZPYZzyKRCvJL6uikXappTb9qtl2MSZ09Xc7EN/V16m9+mT+hSW6dLmdvnaSsOk4/Pe8WbNp2XahLOwCSfXk7QzGh/SjQXVhtj6x+XtNo88uY4qQqPKauOK2gSrRXo620aaKhHfeL7fBVgqIig4iaZ2iTptY0hBiOWNvnrcLm6ZHxGBwDfYnlS5mrwPfauO4GV+l4MdP4dCS9RpFsDmPp73Z9JeX9Wf9FJ4iLBcuJq6CsVlflc18jN7hfhTGpUW+1BNfGZDm+TB5nE1EbTMAKMnq9xlpP/96mZ9diew2gRK6wiqhTs3WiIaNB7sNsvZzbb/Bn8SJdiiRGF+52gWid4muf2W/4Zgr2DniPnbW5osRuWuDXp7ZrNwFIhWf0DkLPdsfOaf4e8bXSTqLLf1gD/LJVVG+99jZESF18Wl3DF8c9NVpy9+DpD1CnCfAaYmq92eYZtFGgV9/fRcP54tewxYXoDdCZarAtw5gchGYfCNWE0Fmmh05YhTXtu40z9yDonTjNUVuBA9EixQ2zW/5dLnj2a6hGYFRHs2DnUBKatZz41DnbbM/4bxpguxkMVVwXLW20V31S7EWL63hxhjTWXctByCUcsw+jc7Ny5p0+PDzztZvHdAPnBxiNfTvI7l8+I9QakWBHpmfw/jrvT8rkPsgGmhMfFuHWJ1E0D3n+/yjSZ11TzEu5r5pD12WACnM8/bMu5lRPN63keDNq0s0RR2nzEjwFODQi5OtWWcKhNyXNuKNw0on8/TUrJOdoI45gNakQof196N6BYjrnjn3LEAH3Wm5RArBgxEaqCC/mkyrpigXgd74zIprZntECMs1JpQw0n2Reccfh9U3ihec8Dk8KWKMPKl8D1SJUfODnVi2khKpjNN7lKXMpwFJ9JkMGAnyIs551gR+FbGdQAT1cIG0+goX2eUr5upJjY4NtYebdxTrigBY824kAj0uDaRYIxxsc41NsRsz1GNaXablEga8PBqR0FfIm3ZpXNSmKCANq7VEBPbFWNpWRzyx4YwilcZY7QQMzT2xfcgOdRTkfWc888YvddGonmNC3dtMj++gzv+hhJNBUGv9wIxZXj5F2iN8jXH+eoW4+mATdxG9OTf8ZNxzcCYf+4sscexuufv0PyA/z706sCsyCp1OR5G6O5mdrlbLasMEgVxftmYli5F4p1jHPPPE3yK17odYdTJl87Yl833ymM9j/qzsQQJ03wkGpLts17hoXUkWlxrvi8kwxundpFPvaikYKxPosl3zNY+9Lg6LZnGV1P55ubz58lfF9+3+74jj3r9h1GzF86avXBq9uDn9fn/GuOLf0heUYznOII3gOPPqrXwA3GErzJG8L/U+kfiKLwBHOEbwBG8ARzfdf2u63ddv05d//7L34p6mj4=",0,[[5811204,53758,-1,33285,203852,0,"/10.0.70.19"]],0,512,0,180,0,0,null,"europe",null]]] +(I) [21:00:15.547] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:00:16.061] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:00:16.061] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:00:16.061] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:00:16.061] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:00:16.061] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:00:16.061] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:00:16.061] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:00:16.061] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:00:16.061] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:00:16.061] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:00:16.061] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:00:16.061] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:00:16.061] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:00:16.061] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:00:16.061] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:00:16.061] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:00:16.061] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:00:16.061] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:00:16.061] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:00:16.061] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:00:16.061] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:00:16.061] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:00:16.061] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:00:16.061] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:00:16.061] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:00:16.061] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:00:16.061] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:00:16.061] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:00:16.061] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:00:25.145] [000023384]: Read bytes [0,"PresenceMessage",16432,[[1018,53758,"/steam/76561198010453859","","Seek & Destroy","",33285,1291,1291,2074389,null,"76561198010453859",3,[],1526767,"Dans l'accueil de la partie personnalisée",[[1409823,"5811204"]]]]] +(I) [21:00:25.150] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:00:36.008] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7aba65f36ebfdab89d35d6fb69f4942ea252195ed0acfe12e3ae2356d71430ca +(I) [21:00:46.214] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:00:46.228] [000013504]: GetPartyStatsByID found 1 teams for user ID 16432 +(I) [21:01:05.007] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4b922cd54ea10b650be9a1bb44d1449607baea6a1c6ae813baa0a370e8caa247 +(I) [21:01:11.061] [000023384]: Read bytes [0,"PresenceMessage",16432,[[1020,53758,"/steam/76561198010453859","","Seek & Destroy","",33285,1291,1291,2074389,null,"76561198010453859",3,[],0,"Hors ligne",[[1409823,""]]]]] +(I) [21:01:11.068] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:36.211] [000013504]: starting online hosting +(I) [21:03:36.961] [000013504]: OnlineHostAsync success +(I) [21:03:36.961] [000013504]: Created Matchinfo for sessionID 5811656 +(I) [21:03:36.961] [000013504]: OnJoinAdvertisementSuccess - joined online match, server leave notification required +(I) [21:03:36.961] [000013504]: starting local hosting +(I) [21:03:36.961] [000013504]: ValidateCustomData: called with 4965 bytes of custom data +(I) [21:03:36.961] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:36.961] [000013504]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [21:03:36.961] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:36.969] [000013504]: Sending matchinfo change #2 +(I) [21:03:36.969] [000013504]: HostAsync - got operation info 0:SessionOperationInfo::SUCCESS +(I) [21:03:36.974] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=1/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=1/0, Pdel=0/0, drop=0/0, data=1/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=3/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=3/0, lb_p=0/0, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=1/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:03:36.977] [000013504]: hosting - Session is connected +(E) [21:03:37.075] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [21:03:37.166] [000013504]: CreateSteamSessionAsync::Process: Successfully created lobby; lobbyId=109775243178416176 +(I) [21:03:37.419] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:37.419] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:37.419] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:37.419] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:37.419] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:37.419] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:37.419] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:37.419] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:37.419] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:37.419] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:37.419] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:37.419] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:37.419] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:37.419] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:37.419] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:37.419] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:37.419] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:37.419] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:37.419] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:37.419] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:37.419] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:37.419] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:37.419] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:37.419] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:37.419] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:37.419] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:37.419] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:37.419] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:37.419] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:38.017] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:38.017] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:38.017] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:38.017] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:38.017] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:38.017] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:38.017] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:38.017] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:38.017] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:38.017] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:38.017] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:38.017] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:38.017] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:38.017] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:38.017] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:38.017] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:38.017] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:38.017] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:38.017] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:38.017] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:38.017] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:03:38.137] [000023384]: Read bytes [0,"PlatformSessionUpdateMessage",16432,[5811656,"0",109775243178416176,""]] +(I) [21:03:38.142] [000013504]: Sending matchinfo change #3 +(I) [21:03:38.178] [000013504]: HostAsync - completed with HostResult = 0 +(I) [21:03:38.178] [000013504]: Party::SetHostJoinResult - 0 +(I) [21:03:38.178] [000013504]: Party::SetStatus - S_CONFIGURING +(I) [21:03:38.178] [000013504]: WorldwideAutomatchService::OnHostComplete - automatcher is no longer active - stopPollPending 0 automatchPollID 18446744073709551615 +(E) [21:03:38.201] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [21:03:38.272] [000013504]: Sending matchinfo change #4 +(E) [21:03:38.321] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [21:03:39.973] [000013504]: Sending matchinfo change #5 +(E) [21:03:40.078] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [21:03:40.366] [000013504]: Sending matchinfo change #6 +(E) [21:03:40.450] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [21:03:41.705] [000013504]: Sending matchinfo change #7 +(E) [21:03:41.832] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [21:03:42.813] [000013504]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [21:03:42.818] [000013504]: Sending matchinfo change #9 +(E) [21:03:42.945] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [21:03:43.008] [000013504]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [21:03:43.008] [000013504]: Sending matchinfo change #10 +(E) [21:03:43.079] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [21:03:53.005] [000013504]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [21:03:53.180] [000013504]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [21:03:56.009] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b8278a14d2be83fa759edd43f4ed1ad40ee1b77c9f7bc34be897fd0a91c276d5 +(I) [21:04:04.006] [000013504]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [21:04:04.188] [000013504]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [21:04:15.003] [000013504]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [21:04:15.200] [000013504]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [21:04:23.954] [000019412]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [None] +(I) [21:04:23.965] [000019412]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [None] +(I) [21:04:23.965] [000019412]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [21:04:24.047] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f3cdb9c0adedfea2b1c4da8b514f7cad869f190c2880509ea0d266f014ecad98 +(I) [21:04:26.001] [000013504]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [21:04:26.197] [000013504]: Automatch2Internal - Server told us to host matchID [5811747] +(I) [21:04:26.197] [000013504]: WorldwideAutomatch2Service::OnHost - host request validated, attempting +(I) [21:04:26.197] [000013504]: WorldwideAutomatch2Service::OnHost - trying to host matchtype 20 +(I) [21:04:26.197] [000013504]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [21:04:26.204] [000013504]: starting online hosting +(I) [21:04:26.489] [000013504]: OnlineHostAsync success +(I) [21:04:26.489] [000013504]: Created Matchinfo for sessionID 5811747 +(I) [21:04:26.489] [000013504]: OnJoinAdvertisementSuccess - joined online match, server leave notification required +(I) [21:04:26.489] [000013504]: starting local hosting +(I) [21:04:26.490] [000013504]: ValidateCustomData: called with 2215 bytes of custom data +(I) [21:04:26.490] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:04:26.490] [000013504]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [21:04:26.490] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:04:26.498] [000013504]: Sending matchinfo change #2 +(I) [21:04:26.498] [000013504]: HostAsync - got operation info 0:SessionOperationInfo::SUCCESS +(I) [21:04:26.506] [000013504]: hosting - Session is connected +(I) [21:04:26.509] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=1/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=1/0, Pdel=0/0, drop=0/0, data=1/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=3/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=3/0, lb_p=0/0, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=1/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(E) [21:04:26.612] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [21:04:26.724] [000013504]: CreateSteamSessionAsync::Process: Successfully created lobby; lobbyId=109775243178865050 +(I) [21:04:27.442] [000023384]: Read bytes [0,"PlatformSessionUpdateMessage",16432,[5811747,"0",109775243178865050,""]] +(I) [21:04:27.446] [000013504]: Sending matchinfo change #3 +(I) [21:04:27.482] [000013504]: HostAsync - completed with HostResult = 0 +(I) [21:04:27.482] [000013504]: Creating an RLink chat channel (not a multiplayer game). +(I) [21:04:27.482] [000013504]: WorldwidePartyService::SetMatchState - state 0 unchanged ignoring +(I) [21:04:27.483] [000013504]: WorldwideAutomatchService::OnHostComplete - automatcher is no longer active - stopPollPending 0 automatchPollID 18446744073709551615 +(I) [21:04:27.483] [000013504]: Sending matchinfo change #11 +(E) [21:04:27.501] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [21:04:27.577] [000013504]: Sending matchinfo change #38 +(E) [21:04:27.599] [000013504]: Rejecting packet type 0 that claims to come from ourself +(E) [21:04:27.606] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [21:04:28.322] [000013504]: Sending matchinfo change #39 +(E) [21:04:28.358] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [21:04:29.116] [000013504]: ValidateCustomData: called with 2121 bytes of custom data +(I) [21:04:29.116] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:04:29.116] [000013504]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [21:04:29.116] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:04:29.118] [000013504]: WorldwideAutomatch2Service::Process - Got into game successfully, 2 players present, got correct slot settings - setting metadata +(I) [21:04:29.131] [000013504]: Sending matchinfo change #41 +(I) [21:04:29.364] [000013504]: Station [0:2] acknowledged matchinfo change #41 +(I) [21:04:29.865] [000013504]: Sending matchinfo change #42 +(I) [21:04:30.111] [000013504]: Station [0:2] acknowledged matchinfo change #42 +(I) [21:04:33.006] [000013504]: WorldwideAutomatch2Service::Process - Waiting, only 0 players ready +(I) [21:04:37.005] [000013504]: WorldwideAutomatch2Service::Polling - queued CreateAutomatch2 +(I) [21:04:37.005] [000013504]: WorldwideAutomatch2Service::Process - Waiting, only 0 players ready +(I) [21:04:37.008] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/4, ichk=0/0, sk_r=0/0, deny=0/0, Padd=2/2, Pdel=0/0, drop=0/0, data=6/16, mdat=0/0, voip=0/0, rchk=0/0, nudg=2/4, Thdr=0/0, Peer=10/26, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=10/11, lb_p=4/1, lb_c=0/1, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=2/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:04:37.202] [000013504]: Automatch2Internal - Server told us to host matchID [5811747] +(I) [21:04:37.202] [000013504]: WorldwideAutomatch2Service::OnHost - already host, nothing to do +(I) [21:04:37.202] [000013504]: Party::OnAutomatch2Event - AET_Polling - R_Success +(I) [21:04:37.552] [000019412]: RENDERING - new resize requested [2560, 1440] reason [WindowSizeEvent] +(I) [21:04:37.552] [000019412]: RENDERING - Starting compositor fullscreen transition [1] +(I) [21:04:37.552] [000019412]: RENDERING - Setting Fullscreen On +(I) [21:04:37.644] [000019412]: RENDERING - state Size [2560 x 1440], fullscreen size[2560 x 1440] +(I) [21:04:37.647] [000019412]: RENDERING - Finished compositor fullscreen transition [1] +(I) [21:04:37.647] [000019412]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [21:04:37.650] [000019412]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [21:04:37.650] [000019412]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [21:04:37.673] [000019412]: RENDERING - new resize requested [2578, 1487] reason [WindowSizeEvent] +(I) [21:04:37.673] [000019412]: RENDERING - resize request clobbering old request [2578, 1487] reason [WindowSizeEvent] +(I) [21:04:37.673] [000019412]: RENDERING - new resize requested [2560, 1440] reason [WindowSizeEvent] +(I) [21:04:37.673] [000019412]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [21:04:37.679] [000019412]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [21:04:37.679] [000019412]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [21:04:41.000] [000013504]: WorldwideAutomatch2Service::Process - Got into game successfully, 2 players present, got correct slot settings - readying up +(I) [21:04:41.000] [000013504]: Accepted PlayerReadyRequest; profileID=16432 isReady=1 +(I) [21:04:41.006] [000013504]: Sending matchinfo change #43 +(I) [21:04:41.238] [000013504]: Accepted PlayerReadyRequest; profileID=1968 isReady=1 +(I) [21:04:41.238] [000013504]: Station [0:2] acknowledged matchinfo change #43 +(I) [21:04:41.238] [000013504]: Sending matchinfo change #44 +(I) [21:04:41.493] [000013504]: Station [0:2] acknowledged matchinfo change #44 +(I) [21:04:41.499] [000013504]: WorldwidePartyService::SetMatchState - state 1 - updating server +(I) [21:04:41.500] [000013504]: Party::SetStatus - S_PLAYING +(I) [21:04:41.518] [000013504]: Sending matchinfo change #12 +(E) [21:04:41.605] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [21:04:42.287] [000013504]: Sending matchinfo change #45 +(I) [21:04:42.287] [000013504]: WorldwideAutomatchService::OnStartComplete - detected successful game start +(I) [21:04:42.287] [000013504]: Match Started - [1968 /steam/76561197970864739], slot = 0, ranking = 23 +(I) [21:04:42.287] [000013504]: Match Started - [16432 /steam/76561198005864560], slot = 1, ranking = 48 +(I) [21:04:42.491] [000013504]: Station [0:2] acknowledged matchinfo change #45 +(I) [21:04:42.784] [000023384]: Read bytes [0,"MatchStartMessage",16432,[[[16432,["2068341","2068340"]],[1968,["2068341","2068340"]]],[["16432","203852"],["1968","137123"]],1680462282,[["16432",[[1543329,20,452979,16432,1,0,"{}",1677175591,2,-1,19,2147483647],[1543351,1,453412,16432,1,0,"{}",1677175591,4,-1,3,2147483647],[1543318,8,451866,16432,1,0,"{}",1677175591,6,-1,19,2147483647],[1543184,21,454503,16432,1,0,"{\"att\":{\"is_new\":{\"val\":\"0\"}},\"epos\":\"20\",\"eslot\":\"20\",\"dlc\":1}",1677175591,1543329,-1,19,-1],[1543327,21,453178,16432,1,0,"{\"epos\":\"0\",\"eslot\":\"0\"}",1677175591,1543329,-1,19,2147483647],[1543328,21,453177,16432,1,0,"{\"epos\":\"1\",\"eslot\":\"1\"}",1677175591,1543329,-1,19,2147483647],[1543330,21,453176,16432,1,0,"{\"epos\":\"2\",\"eslot\":\"2\"}",1677175591,1543329,-1,19,2147483647],[1543413,21,454106,16432,1,0,"{\"epos\":\"18\",\"eslot\":\"18\"}",1677175591,1543329,-1,19,2147483647],[1543414,21,454107,16432,1,0,"{\"epos\":\"19\",\"eslot\":\"19\"}",1677175591,1543329,-1,19,2147483647],[1543416,21,454114,16432,1,0,"{\"epos\":\"6\",\"eslot\":\"6\"}",1677175591,1543329,-1,19,2147483647],[1543417,21,454112,16432,1,0,"{\"epos\":\"7\",\"eslot\":\"7\"}",1677175591,1543329,-1,19,2147483647],[1543418,21,454105,16432,1,0,"{\"epos\":\"4\",\"eslot\":\"4\"}",1677175591,1543329,-1,19,2147483647],[1543419,21,454111,16432,1,0,"{\"epos\":\"8\",\"eslot\":\"8\"}",1677175591,1543329,-1,19,2147483647],[1543420,21,454113,16432,1,0,"{\"epos\":\"9\",\"eslot\":\"9\"}",1677175591,1543329,-1,19,2147483647],[1543421,21,454109,16432,1,0,"{\"epos\":\"5\",\"eslot\":\"5\"}",1677175591,1543329,-1,19,2147483647],[1543422,21,454110,16432,1,0,"{\"epos\":\"10\",\"eslot\":\"10\"}",1677175591,1543329,-1,19,2147483647],[1543423,21,454125,16432,1,0,"{\"epos\":\"11\",\"eslot\":\"11\"}",1677175591,1543329,-1,19,2147483647],[1543424,21,454123,16432,1,0,"{\"epos\":\"12\",\"eslot\":\"12\"}",1677175591,1543329,-1,19,2147483647],[1543425,21,454116,16432,1,0,"{\"epos\":\"13\",\"eslot\":\"13\"}",1677175591,1543329,-1,19,2147483647],[1543426,21,454121,16432,1,0,"{\"epos\":\"14\",\"eslot\":\"14\"}",1677175591,1543329,-1,19,2147483647],[1543427,21,454119,16432,1,0,"{\"epos\":\"3\",\"eslot\":\"3\"}",1677175591,1543329,-1,19,2147483647],[1543428,21,454115,16432,1,0,"{\"epos\":\"15\",\"eslot\":\"15\"}",1677175591,1543329,-1,19,2147483647],[1543429,21,454122,16432,1,0,"{\"epos\":\"16\",\"eslot\":\"16\"}",1677175591,1543329,-1,19,2147483647],[1543430,21,454120,16432,1,0,"{\"epos\":\"17\",\"eslot\":\"17\"}",1677175591,1543329,-1,19,2147483647],[1543187,1,454524,16432,1,0,"{\"epos\":\"0\",\"eslot\":\"0\",\"dlc\":1}",1677175591,1543351,-1,19,-1],[1543191,1,454522,16432,1,0,"{\"epos\":\"10\",\"eslot\":\"10\",\"dlc\":1}",1677175591,1543351,-1,19,-1]]],["1968",[[284394,102,451845,1968,1,0,"{}",1677175070,2,-1,19,2147483647],[284429,1,453412,1968,1,0,"{}",1677175070,4,-1,3,2147483647],[284396,84,451866,1968,1,0,"{}",1677175070,6,-1,19,2147483647],[284139,94,454504,1968,1,0,"{\"att\":{\"is_new\":{\"val\":\"0\"}},\"epos\":\"23\",\"eslot\":\"23\",\"dlc\":1}",1677175070,284394,-1,19,-1],[284399,103,453182,1968,1,0,"{\"epos\":\"1\",\"eslot\":\"1\"}",1677175070,284394,-1,19,2147483647],[284402,103,453179,1968,1,0,"{\"epos\":\"0\",\"eslot\":\"0\"}",1677175070,284394,-1,19,2147483647],[284403,103,453181,1968,1,0,"{\"epos\":\"2\",\"eslot\":\"2\"}",1677175070,284394,-1,19,2147483647],[284450,103,454103,1968,1,0,"{\"epos\":\"21\",\"eslot\":\"21\"}",1677175070,284394,-1,19,2147483647],[284451,103,454102,1968,1,0,"{\"epos\":\"22\",\"eslot\":\"22\"}",1677175070,284394,-1,19,2147483647],[284453,103,454089,1968,1,0,"{\"epos\":\"14\",\"eslot\":\"14\"}",1677175070,284394,-1,19,2147483647],[284454,103,454088,1968,1,0,"{\"epos\":\"15\",\"eslot\":\"15\"}",1677175070,284394,-1,19,2147483647],[284455,103,454082,1968,1,0,"{\"epos\":\"8\",\"eslot\":\"8\"}",1677175070,284394,-1,19,2147483647],[284456,103,454086,1968,1,0,"{\"epos\":\"16\",\"eslot\":\"16\"}",1677175070,284394,-1,19,2147483647],[284457,103,454085,1968,1,0,"{\"epos\":\"9\",\"eslot\":\"9\"}",1677175070,284394, +(I) [21:04:42.787] [000013504]: WorldwideAutomatchService::OnStartComplete - detected successful game start +(I) [21:04:42.787] [000013504]: WorldwideAutomatchService::OnStartComplete - forcing pollcomplete event +(I) [21:04:42.787] [000013504]: GameApp::SetTargetState : new (Game) old (Uninitialized) +(I) [21:04:42.796] [000013504]: MOD - Setting player [0] race to: [137123] +(I) [21:04:42.797] [000013504]: MOD - Setting player [1] race to: [203852] +(I) [21:04:42.798] [000013504]: ModDllSetup: SetStatsGameUID=23246989 +(I) [21:04:42.798] [000013504]: GAME -- Scenario: data:scenarios\multiplayer\rural_town_2p_mkii\rural_town_2p_mkii +(I) [21:04:42.798] [000013504]: GAME -- Win Condition Qualified Name: 00000000000000000000000000000000:3318379781 +(I) [21:04:42.798] [000013504]: GAME -- Win Condition Name: VictoryPoint +(I) [21:04:42.798] [000013504]: GAME -- Human Player: 0 Imperial Dane 1968 0 germans +(I) [21:04:42.798] [000013504]: GAME -- Human Player: 1 UMirinBrah? 16432 1 british_africa +(I) [21:04:42.798] [000013504]: GameApp::SetState : new (LoadingGame) old (UnloadedGame) +(I) [21:04:43.256] [000013504]: WorldwideAutomatch2Service::OnPollComplete - I am peer 1, ihost:1, islocal:1 +(I) [21:04:43.256] [000013504]: WorldwideAutomatch2Service::OnPollComplete - All players in session and ready, automatch process complete +(I) [21:04:43.620] [000013504]: GameObj::StartGameObj - info, network session GUID set to [23246989]. +(I) [21:04:43.620] [000006988]: Loading step: [OnBeginLoad] +(I) [21:04:43.620] [000006988]: Loading step: [Assign Players] +(I) [21:04:43.620] [000006988]: Loading step: [FXReflection] +(I) [21:04:43.621] [000006988]: Loading step: [FXDataContext] +(I) [21:04:43.621] [000006988]: Loading step: [FX Texture Pack] +(I) [21:04:43.621] [000006988]: Loading step: [Run Havok Garbage Collection] +(I) [21:04:43.621] [000006988]: Loading step: [Flush Inventory On Application Exit] +(I) [21:04:43.621] [000006988]: Loading step: [Default World] +(I) [21:04:43.629] [000006988]: Loading step: [FX Command Function] +(I) [21:04:43.629] [000006988]: Loading step: [AnimatorCommandFunction] +(I) [21:04:43.629] [000006988]: Loading step: [MemShrink] +(I) [21:04:43.629] [000006988]: Loading step: [Sync Checking] +(I) [21:04:43.629] [000006988]: Loading step: [Tuning Variant] +(I) [21:04:43.629] [000006988]: Using scenario tuning variant [default] +(I) [21:04:43.629] [000006988]: Loading step: [Mod Packs] +(I) [21:04:43.629] [000006988]: Loading step: [SimVis System] +(I) [21:04:43.629] [000006988]: Loading step: [DefaultWorld] +(I) [21:04:43.629] [000006988]: Loading step: [Visual Physics ME] +(I) [21:04:43.629] [000006988]: Loading step: [Deferred Decal Manager] +(I) [21:04:43.629] [000006988]: Loading step: [FogVolumeManager] +(I) [21:04:43.629] [000006988]: Loading step: [Vehicle Physics Function] +(I) [21:04:43.629] [000006988]: Loading step: [Unit Occlusion Function] +(I) [21:04:43.629] [000006988]: Loading step: [Splat Function] +(I) [21:04:43.629] [000006988]: Loading step: [Grass Function] +(I) [21:04:43.629] [000006988]: Loading step: [Object Alpha Factor Function] +(I) [21:04:43.629] [000006988]: Loading step: [Renderable Managers] +(I) [21:04:43.630] [000006988]: Loading step: [Setup Skins] +(I) [21:04:43.630] [000006988]: Loading step: [AnimEventSetup] +(I) [21:04:43.630] [000006988]: Loading step: [Session Precache] +(I) [21:04:43.723] [000006988]: Loading step: [Precache core resources] +(I) [21:04:43.723] [000006988]: Loading step: [Precache EBPs] +(I) [21:04:43.724] [000006988]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [21:04:43.724] [000006988]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [21:04:43.724] [000006988]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [21:04:43.724] [000006988]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [21:04:43.825] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:04:43.825] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:04:43.825] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:04:43.825] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:04:43.825] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:04:43.825] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:04:43.825] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:04:43.825] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:04:43.825] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:04:43.825] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:04:43.825] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:04:43.825] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:04:43.825] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:04:43.825] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:04:43.825] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:04:43.825] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:04:43.825] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:04:43.825] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:04:43.825] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:04:43.825] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:04:43.825] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:04:43.825] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:04:43.825] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:04:43.825] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:04:43.825] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:04:43.825] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:04:43.825] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:04:43.825] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:04:43.825] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:04:44.172] [000006988]: Loading step: [Precache State Tree references] +(I) [21:04:44.229] [000006988]: Loading step: [Load Actions] +(I) [21:04:44.230] [000006988]: Loading step: [Load Resources from Precache] +(I) [21:04:44.442] [000006988]: Loading step: [GEWorld] +(I) [21:04:44.442] [000006988]: GAME - InitializeGEWorld +(I) [21:04:44.599] [000006988]: Re-winding a compressed stream for file 'data:scenarios\multiplayer\rural_town_4p\rural_town_4p.scenario'. Expensive operation +(I) [21:04:45.227] [000006988]: Regenerating ImpassMap data... +(I) [21:04:45.450] [000006988]: Regenerating SimTerrainCoverMap data... +(I) [21:04:45.475] [000006988]: SimTerrainCoverMap generation took 0.024146 seconds. +(I) [21:04:45.841] [000006988]: Pathfinding::Regenerate()... +(I) [21:04:45.989] [000006988]: Pathfinding::Regenerate() Done. +(I) [21:04:46.008] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=54b3b9e27e91e37272702608029e1f4e063bd559335b38934c501cb6844d36ab +(I) [21:04:46.331] [000006988]: GAME - CreateGEWorld in 1888 ms +(I) [21:04:46.331] [000006988]: SIM -- Setting SyncErrorChecking level to Low +(I) [21:04:46.331] [000006988]: Loading step: [Load Resources from GEWorld] +(I) [21:04:46.373] [000006988]: Loading step: [Sound Banks] +(I) [21:04:46.373] [000006988]: Loading step: [Session] +(I) [21:04:46.373] [000006988]: GAME - SessionSetup +(I) [21:04:46.374] [000006988]: GAME - SessionSetup finished in 0 ms +(I) [21:04:46.374] [000006988]: Loading step: [Player Setup] +(I) [21:04:46.374] [000006988]: GAME -- Recording game +(I) [21:04:46.374] [000006988]: Loading step: [Scenario Lua System] +(I) [21:04:46.411] [000006988]: Loading step: [Team Colour Init] +(I) [21:04:46.411] [000006988]: Loading step: [Race Precaching Event Listener Registration] +(I) [21:04:46.411] [000006988]: Loading step: [Simulation] +(I) [21:04:46.436] [000006988]: LoadWinCondition: - [winconditions\mode_victorypoint] succeeded. +(I) [21:04:46.630] [000006988]: Player [] killed on game tick [0] due to [unused player] +(I) [21:04:46.630] [000006988]: Player [] killed on game tick [0] due to [unused player] +(I) [21:04:46.630] [000006988]: Player [] killed on game tick [0] due to [unused player] +(I) [21:04:46.630] [000006988]: Player [] killed on game tick [0] due to [unused player] +(I) [21:04:46.630] [000006988]: Player [] killed on game tick [0] due to [unused player] +(I) [21:04:46.630] [000006988]: Player [] killed on game tick [0] due to [unused player] +(I) [21:04:46.630] [000006988]: Player [] killed on game tick [0] due to [unused player] +(I) [21:04:46.630] [000006988]: Player [] killed on game tick [0] due to [unused player] +(I) [21:04:46.630] [000006988]: Player [] killed on game tick [0] due to [unused player] +(I) [21:04:46.630] [000006988]: Player [] killed on game tick [0] due to [unused player] +(I) [21:04:46.630] [000006988]: Player [] killed on game tick [0] due to [unused player] +(I) [21:04:46.630] [000006988]: Player [] killed on game tick [0] due to [unused player] +(I) [21:04:46.630] [000006988]: Player [] killed on game tick [0] due to [unused player] +(I) [21:04:46.630] [000006988]: Player [] killed on game tick [0] due to [unused player] +(I) [21:04:47.153] [000006988]: Loading step: [GameUICore System] +(I) [21:04:47.162] [000006988]: Loading step: [UI System] +(I) [21:04:47.163] [000006988]: Loading step: [LUA] +(I) [21:04:47.163] [000006988]: Loading step: [Game Event Listener Registration] +(I) [21:04:47.163] [000006988]: Loading step: [CPU AI] +(I) [21:04:47.169] [000006988]: Loading step: [Scar Init] +(I) [21:04:47.169] [000006988]: Loading step: [FX System] +(I) [21:04:47.169] [000006988]: Loading step: [Cheat Menu] +(I) [21:04:47.172] [000006988]: Loading step: [Scar Start] +(I) [21:04:47.174] [000006988]: Loading step: [Load resources] +(I) [21:04:47.175] [000006988]: Loading step: [PreDisplay] +(I) [21:04:47.175] [000006988]: Loading step: [Free Loading Data] +(I) [21:04:47.175] [000006988]: PreloadResources took 0ms. +(I) [21:04:47.175] [000006988]: Loading step: [MemShrink] +(I) [21:04:47.175] [000006988]: Loading step: [Flush Inventory] +(I) [21:04:47.177] [000006988]: Loading step: [Resolve Impasse Blockers] +(I) [21:04:47.177] [000006988]: Loading step: [Convert OOB Static Entities to Visual Only Objects] +(I) [21:04:47.177] [000006988]: Loading step: [DefaultWorld Begin Play] +(I) [21:04:47.237] [000006988]: Loading step: [Preparing game] +(I) [21:04:47.370] [000006988]: Loading step: [Start Renderer] +(I) [21:04:47.370] [000006988]: Loading step: [FrontEnd simulation initialization] +(I) [21:04:47.370] [000006988]: Loading step: [WPFGFrontEnd loading] +(I) [21:04:47.374] [000006988]: Loading step: [OnEndLoad] +(I) [21:04:47.800] [000013504]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [1240676452]. +(I) [21:04:48.868] [000013504]: LoadArbitrator::UpdateLoadProgress - info, player "[0:2]" finished loading with checksum [1240676452]. +(I) [21:04:48.870] [000013504]: PerformanceRecorder::StartRecording for game size 2 +(I) [21:04:48.870] [000013504]: GAME -- Starting mission: data:scenarios\multiplayer\rural_town_2p_mkii\rural_town_2p_mkii +(I) [21:04:48.870] [000013504]: MEM -- available page 7137 mb, total page 40880 mb +(I) [21:04:48.875] [000013504]: GameApp::SetState : new (Game) old (LoadingGame) +(I) [21:04:48.875] [000013504]: GameApp::SetTargetState : new (Uninitialized) old (Game) +(I) [21:04:52.657] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5bdd5a81065f76c49c092860b66c4e7269804a1116a2e1ddef9a8a6c887b37a8 +(I) [21:05:04.005] [000013504]: Local user framerate is [0.000000] +(I) [21:05:04.005] [000013504]: Local user MinDelay=[1ms], MaxDelay=[44ms], AvgDelay=[28ms], minRTT[24ms], maxRTT[346ms], avgRTT[92ms] +(I) [21:05:04.151] [000013504]: Sent match chat message { hihi } +(I) [21:05:04.340] [000013504]: Response received after sending match chat message { hihi } +(I) [21:05:08.341] [000023384]: Read bytes [0,"MatchReceivedChatMessage",16432,[1968,"heyo","heyo",2,5811747]] +(I) [21:05:08.343] [000013504]: Received chat message { heyo } +(I) [21:05:08.343] [000013504]: Starting FilterChatJob for message { heyo } +(I) [21:05:08.371] [000013504]: Posting chat event from FilterChatJob for message { heyo } +(I) [21:05:12.014] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a90acdf7ed150797b822fede66c9ab979d8eac22ca8bd2dcb561173f32b9fcdb +(I) [21:05:25.000] [000013504]: Local user framerate is [140.557831] +(I) [21:05:25.000] [000013504]: Local user MinDelay=[1ms], MaxDelay=[50ms], AvgDelay=[33ms], minRTT[24ms], maxRTT[346ms], avgRTT[84ms] +(I) [21:05:27.006] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=152/24, mdat=303/606, voip=0/0, rchk=0/0, nudg=1/2, Thdr=0/0, Peer=11/26, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=11/13, lb_p=25/7, lb_c=0/0, cast=0/0, cdat=134/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:05:35.012] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f1045e72796afa102b70e9fa115db3bc8029ce7f4dc75be704d33ef6524fac0c +(I) [21:05:38.008] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=36/0, mdat=87/174, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=5/1, lb_c=0/0, cast=0/0, cdat=33/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:05:45.665] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ba36f4220c322b99e66fabcd8803bfb6a1d64aab50a3580d6b5f2ef35e758d4a +(I) [21:05:46.002] [000013504]: Local user framerate is [141.535843] +(I) [21:05:46.002] [000013504]: Local user MinDelay=[1ms], MaxDelay=[51ms], AvgDelay=[36ms], minRTT[24ms], maxRTT[346ms], avgRTT[82ms] +(I) [21:06:05.013] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c53f7c8aad3668d66116ee78cc627d45ab3c21c2bf2c13a76b9d5380a4ba92b2 +(I) [21:06:07.006] [000013504]: Local user framerate is [141.485840] +(I) [21:06:07.006] [000013504]: Local user MinDelay=[29ms], MaxDelay=[51ms], AvgDelay=[41ms], minRTT[40ms], maxRTT[164ms], avgRTT[77ms] +(I) [21:06:19.827] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b4a26b7246574c897d52e3af0f5de95bcb1bf9330363aceca222aad5b7ab4908 +(I) [21:06:28.005] [000013504]: Local user framerate is [141.614594] +(I) [21:06:28.005] [000013504]: Local user MinDelay=[29ms], MaxDelay=[51ms], AvgDelay=[41ms], minRTT[36ms], maxRTT[164ms], avgRTT[77ms] +(I) [21:06:28.008] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=160/0, mdat=400/800, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=25/7, lb_c=0/0, cast=0/0, cdat=157/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:06:39.001] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=36/0, mdat=88/176, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=5/1, lb_c=0/0, cast=0/0, cdat=34/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:06:39.012] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3450ef0cb17ceb56774153556738ea480b811667e168758eff2bd02bd8e5601c +(I) [21:06:49.006] [000013504]: Local user framerate is [140.957703] +(I) [21:06:49.006] [000013504]: Local user MinDelay=[36ms], MaxDelay=[36ms], AvgDelay=[36ms], minRTT[78ms], maxRTT[78ms], avgRTT[78ms] +(I) [21:06:51.649] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d5e7cfec39a9ee9e602c82cf27b29626be40221794baff7a04a7802bdd7fc97a +(I) [21:07:10.000] [000013504]: Local user framerate is [140.857742] +(I) [21:07:10.000] [000013504]: Local user MinDelay=[28ms], MaxDelay=[50ms], AvgDelay=[38ms], minRTT[46ms], maxRTT[131ms], avgRTT[78ms] +(I) [21:07:11.010] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2eb920eb1ad1f8c850677fba62412927d220ea27ad7e45d32dec85996fc5f25f +(I) [21:07:25.986] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1cfe041d8928e1cd3e554edc0f5bc4e7de13e6355facbb55d0214824e501e107 +(I) [21:07:29.000] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=158/0, mdat=400/800, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=26/7, lb_c=0/0, cast=0/0, cdat=147/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:07:31.009] [000013504]: Local user framerate is [140.057983] +(I) [21:07:31.009] [000013504]: Local user MinDelay=[28ms], MaxDelay=[54ms], AvgDelay=[40ms], minRTT[41ms], maxRTT[140ms], avgRTT[75ms] +(I) [21:07:35.824] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=01f96fafdffc67870261f59ae7b12953aab42e1a9934a75c4bc2e0cfc729916f +(I) [21:07:40.002] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=35/0, mdat=88/176, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=5/1, lb_c=0/0, cast=0/0, cdat=34/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:07:43.544] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3d9d89a6e27598a929e5e108e41f3bc000ef8b8b489483e918f26134adf3fc6c +(I) [21:07:52.000] [000013504]: Local user framerate is [139.258224] +(I) [21:07:52.000] [000013504]: Local user MinDelay=[36ms], MaxDelay=[62ms], AvgDelay=[45ms], minRTT[52ms], maxRTT[131ms], avgRTT[81ms] +(I) [21:07:54.369] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=033e681b52ad16623cb779d5769dd65ccf1af57dbc828cc54230fc472b1852e5 +(I) [21:08:00.037] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=405ea65d40c662a349fd718b7ce4781b078676cb3dde2392d66b8f11aaa2d93a +(I) [21:08:06.078] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b20e196edd3fe7b2d44d6fba17c4e8f41ea5a2fa953ef7ff095f835fdc456711 +(I) [21:08:13.005] [000013504]: Local user framerate is [139.000000] +(I) [21:08:13.005] [000013504]: Local user MinDelay=[22ms], MaxDelay=[62ms], AvgDelay=[43ms], minRTT[38ms], maxRTT[153ms], avgRTT[79ms] +(I) [21:08:17.050] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=35ea8c1916a8cb2d540855a89a476dea6e49fb3a3b000814427108ea37ab3911 +(I) [21:08:24.049] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f7012c654ddb5eeffcdf6e4eed0ec40c75db39c5c09c82e412d4188f3959550f +(I) [21:08:27.174] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e648e952cab7e1fd7ee5047b9cfeba43393f1eff786004aa96631359326a231a +(I) [21:08:30.010] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=205/0, mdat=400/800, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=25/7, lb_c=0/0, cast=0/0, cdat=192/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:08:34.002] [000013504]: Local user framerate is [139.572067] +(I) [21:08:34.002] [000013504]: Local user MinDelay=[15ms], MaxDelay=[63ms], AvgDelay=[43ms], minRTT[28ms], maxRTT[153ms], avgRTT[78ms] +(I) [21:08:38.589] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3582f0f3793a9c1dbc4ab6f94ffb473340a926569c464dee9723c24c37a5e5df +(I) [21:08:41.010] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=57/0, mdat=88/176, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=5/1, lb_c=0/0, cast=0/0, cdat=52/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:08:44.420] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9f4119c62c28db6c4c6243e663ef0f85555ae73ee6f4ff970e3f5c59de8e6395 +(I) [21:08:53.692] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d9551b2744274952f1f5a5c3b83e6dc07daa72d56a2e599839e407d43618ecd2 +(I) [21:08:55.003] [000013504]: Local user framerate is [138.443069] +(I) [21:08:55.003] [000013504]: Local user MinDelay=[29ms], MaxDelay=[50ms], AvgDelay=[41ms], minRTT[55ms], maxRTT[155ms], avgRTT[78ms] +(I) [21:09:03.941] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6f2118301a01ea02870d66828a10670eff09b72f8c74f2a738090fdf50fccbcc +(I) [21:09:16.007] [000013504]: Local user framerate is [138.029297] +(I) [21:09:16.007] [000013504]: Local user MinDelay=[29ms], MaxDelay=[56ms], AvgDelay=[43ms], minRTT[55ms], maxRTT[155ms], avgRTT[77ms] +(I) [21:09:16.197] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7cf98bd80c4701d3809ab9d54d29036a844a6e691ddc50a12d022ea0a79e08f5 +(I) [21:09:28.404] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=40c72a0f4598f05641349ab6a8f179df38d94eaf4d911f7c64b331a12e38b5fc +(I) [21:09:31.009] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=195/0, mdat=400/800, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=25/7, lb_c=0/0, cast=0/0, cdat=182/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:09:32.422] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:32.422] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:32.422] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:32.422] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:32.422] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:32.422] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:32.422] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:32.422] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:32.422] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:32.422] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:32.422] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:32.422] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:32.422] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:32.422] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:32.422] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:32.422] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:32.422] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:32.422] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:32.422] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:32.422] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:32.422] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:32.422] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:32.422] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:32.422] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:32.422] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:32.422] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:32.422] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:32.422] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:32.422] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:33.280] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:33.280] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:33.280] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:33.280] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:33.280] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:33.280] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:33.280] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:33.280] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:33.280] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:33.280] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:33.280] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:33.280] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:33.280] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:33.280] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:33.280] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:33.280] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:33.280] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:33.280] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:33.280] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:33.280] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:33.280] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:33.280] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:33.280] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:33.280] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:33.280] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:33.280] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:33.280] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:09:37.001] [000013504]: Local user framerate is [137.336258] +(I) [21:09:37.001] [000013504]: Local user MinDelay=[29ms], MaxDelay=[56ms], AvgDelay=[43ms], minRTT[32ms], maxRTT[155ms], avgRTT[77ms] +(I) [21:09:38.544] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ff0a9962e4b5970f6f473e4911e8871865ad836db258fe771d98e2f06b30abbf +(I) [21:09:42.005] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=32/0, mdat=87/174, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=6/2, lb_c=0/0, cast=0/0, cdat=31/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:09:42.074] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c275adf7604544901661fe5609aa94899d59f7398f0f40f8aab07ab8f744c737 +(I) [21:09:49.164] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5b4d073be1b60494426c03b420a0a125a80aaf4b9f081043937629977b0b8ebc +(I) [21:09:56.342] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c53ba13a2bb5ac9c2349bb5d3a9011abe66a0fd088cc170d42cbe20ab674a3b9 +(I) [21:09:58.000] [000013504]: Local user framerate is [139.736023] +(I) [21:09:58.000] [000013504]: Local user MinDelay=[28ms], MaxDelay=[60ms], AvgDelay=[44ms], minRTT[33ms], maxRTT[160ms], avgRTT[75ms] +(I) [21:10:00.769] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e4e7ba8eff8bf58fb2486614ea75dddf61e6712265af2d298690fa29b19428f8 +(I) [21:10:12.210] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=deae12d2c106ccddc5e5e07568326b342f7ede5f84160d1158d3d10c0c1861f2 +(I) [21:10:19.002] [000013504]: Local user framerate is [139.149994] +(I) [21:10:19.002] [000013504]: Local user MinDelay=[28ms], MaxDelay=[60ms], AvgDelay=[43ms], minRTT[33ms], maxRTT[160ms], avgRTT[79ms] +(I) [21:10:19.741] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b79f0eea45945f3eea8d6ef5993969ce8dd8a8865b41c1eb97095ce5c24e58ad +(I) [21:10:32.002] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=189/0, mdat=400/800, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=25/6, lb_c=0/0, cast=0/0, cdat=174/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:10:32.768] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cf0388aa148a29a8972868b0f1d4d47ef11343d528f3d8e0ea083ece66eb626c +(I) [21:10:39.708] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0cacd2afaccd7b5c6a19ed579fec1e412793d6cbc62c30cbbb9fa71fadb0d6ad +(I) [21:10:40.000] [000013504]: Local user framerate is [137.708679] +(I) [21:10:40.000] [000013504]: Local user MinDelay=[24ms], MaxDelay=[60ms], AvgDelay=[41ms], minRTT[33ms], maxRTT[160ms], avgRTT[78ms] +(I) [21:10:43.009] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=51/0, mdat=88/176, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=5/2, lb_c=0/0, cast=0/0, cdat=49/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:10:46.358] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3eb1677c46a21b3f52030c3e78e23ad1db1c1d57aeab0575df32ff9659ba6929 +(I) [21:11:01.002] [000013504]: Local user framerate is [136.029587] +(I) [21:11:01.002] [000013504]: Local user MinDelay=[30ms], MaxDelay=[50ms], AvgDelay=[39ms], minRTT[51ms], maxRTT[123ms], avgRTT[76ms] +(I) [21:11:02.641] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3205aa07caf1e8880ab63ea3ab4e1f964a4ec78381e5675f2e3d038555ca8bbc +(I) [21:11:22.008] [000013504]: Local user framerate is [137.699997] +(I) [21:11:22.008] [000013504]: Local user MinDelay=[21ms], MaxDelay=[61ms], AvgDelay=[41ms], minRTT[46ms], maxRTT[135ms], avgRTT[73ms] +(I) [21:11:22.015] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5f7ddb3d3928deb332d9583a959393a22c30a1f8d28aeba85d74dc7f8eb801c5 +(I) [21:11:33.009] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=174/0, mdat=400/800, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=25/6, lb_c=0/0, cast=0/0, cdat=159/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:11:34.639] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=41e23d8bc10382babf63eed0de8ec1d57b01e12f84c6444b594adfbbd36e51a8 +(I) [21:11:37.407] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b7def3fb57e803bc1a1745272c07ec9994b9af483afb03d9908aa6f84964a5c4 +(I) [21:11:40.620] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a0bc44b392f8e9b481088a44a4d9333caef3bee62c4db359897916681c7f2409 +(I) [21:11:43.001] [000013504]: Local user framerate is [139.172150] +(I) [21:11:43.001] [000013504]: Local user MinDelay=[21ms], MaxDelay=[61ms], AvgDelay=[42ms], minRTT[35ms], maxRTT[157ms], avgRTT[74ms] +(I) [21:11:44.003] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=49/0, mdat=88/176, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=6/2, lb_c=0/0, cast=0/0, cdat=47/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:11:45.636] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=47299961db7a140ea5e54628da125be14bd8566033eb660421c9e62d9413b05b +(I) [21:11:46.193] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5309f31ec69a320da1430476d5c4d9a97abc366509f0e95fb9bc6c3995c7f65b +(I) [21:12:01.109] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f134daf1923c35baf9c1032957f2021d474663247ad684d0f68cad88f2aad94e +(I) [21:12:04.000] [000013504]: Local user framerate is [135.672852] +(I) [21:12:04.000] [000013504]: Local user MinDelay=[28ms], MaxDelay=[51ms], AvgDelay=[42ms], minRTT[40ms], maxRTT[120ms], avgRTT[72ms] +(I) [21:12:06.550] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=57bb54e2bbb9e3bafed048285b2298f74599069487910d17703aba9360add927 +(I) [21:12:11.605] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0e6b1f6b33c6efca5aa1130529769864c3004b7402182de0ee767d4274630d2f +(I) [21:12:17.286] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=0c52a02824e087e0482ef0cf565d342805a8bb3f32eff34ef8f91f8c84e75ade +(I) [21:12:24.608] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=cfc870fd4cbcf0951395ba140877434521a2189c4fa85583d8731d6533e228f1 +(I) [21:12:25.008] [000013504]: Local user framerate is [137.572479] +(I) [21:12:25.008] [000013504]: Local user MinDelay=[28ms], MaxDelay=[53ms], AvgDelay=[41ms], minRTT[34ms], maxRTT[143ms], avgRTT[74ms] +(I) [21:12:29.497] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=48f68dd317a0a84c211e9386ea7d002ca8dcad8a5b0dd3655f7d67858e43d989 +(I) [21:12:34.009] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=192/0, mdat=400/800, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=24/6, lb_c=0/0, cast=0/0, cdat=182/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:12:36.612] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=30e03d99984ea28873281579cc9e5735878f3213ee618186cb3f830be6cabef2 +(I) [21:12:44.896] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b118c32a62d10ad2fa3b3b020be04152397bce28f49f5cbbf9b099fb9e8564e3 +(I) [21:12:45.001] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=53/0, mdat=87/174, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=6/2, lb_c=0/0, cast=0/0, cdat=47/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:12:46.005] [000013504]: Local user framerate is [134.086578] +(I) [21:12:46.005] [000013504]: Local user MinDelay=[28ms], MaxDelay=[53ms], AvgDelay=[40ms], minRTT[34ms], maxRTT[164ms], avgRTT[77ms] +(I) [21:12:48.924] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=61a83a03809b6213541aaef55e727beb8e5ea9481f9b8465e484db91c9ffd601 +(I) [21:13:00.149] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d13f5a531be7e832724c42d8f298cc2ceddc9b64b4918358f490897826744379 +(I) [21:13:04.409] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5d1e4010e651f1c5f30a6c2bd89c79e6b608b3de1444b2469cf129c1d4ce7df2 +(I) [21:13:07.003] [000013504]: Local user framerate is [134.149994] +(I) [21:13:07.003] [000013504]: Local user MinDelay=[31ms], MaxDelay=[55ms], AvgDelay=[43ms], minRTT[36ms], maxRTT[150ms], avgRTT[75ms] +(I) [21:13:13.636] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=10f26af42a41e6cba402814eb32e3285027f497fc5b9b8b7be9b911c79635dea +(I) [21:13:19.467] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1aedf1cde511bbc6e6e1d1722005f3986264f46a989d51539f1356f7731228fc +(I) [21:13:21.829] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5782316b9497c87be28f677ae2b4142462946e5ae35600ed5947cd85835a709e +(I) [21:13:28.016] [000013504]: Local user framerate is [137.808655] +(I) [21:13:28.016] [000013504]: Local user MinDelay=[22ms], MaxDelay=[73ms], AvgDelay=[43ms], minRTT[36ms], maxRTT[160ms], avgRTT[76ms] +(I) [21:13:35.003] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=185/0, mdat=400/800, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=25/6, lb_c=0/0, cast=0/0, cdat=173/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:13:36.416] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=06bd4fd72859015274ef7dfd2e5614f1d6473a31ea42cdd88443bc496c6062de +(I) [21:13:41.136] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c85d7075e285e9b4b5594cfc92d7fe3d185579edfe2f9d0c3316b628377ebaa1 +(I) [21:13:46.000] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=46/0, mdat=88/176, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=5/2, lb_c=0/0, cast=0/0, cdat=41/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:13:49.008] [000013504]: Local user framerate is [139.958008] +(I) [21:13:49.008] [000013504]: Local user MinDelay=[43ms], MaxDelay=[43ms], AvgDelay=[43ms], minRTT[4294967295ms], maxRTT[0ms], avgRTT[0ms] +(I) [21:13:50.246] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=935d4f2320416367d41c09a44dc8eba4b9686e178f7719594b4529e5fa1529e4 +(I) [21:14:05.331] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=36345215256bebc66970efef5b107b6ec89ec1545e2415a6c372ec7d45961ed3 +(I) [21:14:09.583] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=16589efeea30879384d338669ae236b2c411edbe4cf1f91abbfc4850fce36a38 +(I) [21:14:10.005] [000013504]: Local user framerate is [138.949997] +(I) [21:14:10.005] [000013504]: Local user MinDelay=[34ms], MaxDelay=[54ms], AvgDelay=[43ms], minRTT[40ms], maxRTT[152ms], avgRTT[76ms] +(I) [21:14:16.742] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3d7d992a43fdf2e38295f71e93a8444d53aa8f7ce516a8353ec426838c01e867 +(I) [21:14:26.244] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1a37c775eecc13413ad2228f8fff20a6adc68d9b29116d8893af08f464edf230 +(I) [21:14:31.001] [000013504]: Local user framerate is [139.593018] +(I) [21:14:31.001] [000013504]: Local user MinDelay=[34ms], MaxDelay=[55ms], AvgDelay=[44ms], minRTT[25ms], maxRTT[152ms], avgRTT[75ms] +(I) [21:14:31.130] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1d69391ab65cc2fb95c134f8167f580111ba5c9b04402e10adf97a261cc8c496 +(I) [21:14:33.067] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=573cb8dc3545155fb2c3aa424e0b9b4b5c93199791e293e6a4eeafc38b9ffecd +(I) [21:14:36.002] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=170/0, mdat=400/800, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=25/6, lb_c=0/0, cast=0/0, cdat=154/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:14:37.807] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f880c8c4f6f0ad364a2bf29744c2bedd77d702faf6ab1bd4e4d8d2d165a65f8e +(I) [21:14:47.002] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=41/0, mdat=88/176, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=6/2, lb_c=0/0, cast=0/0, cdat=37/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:14:49.211] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=442c15afc03966adc89a46ae854ad06d63106ed3399db1f10f25442d104c40ce +(I) [21:14:52.004] [000013504]: Local user framerate is [137.922409] +(I) [21:14:52.004] [000013504]: Local user MinDelay=[35ms], MaxDelay=[50ms], AvgDelay=[42ms], minRTT[70ms], maxRTT[136ms], avgRTT[84ms] +(I) [21:14:56.259] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d635706500d41cae2f3358a910af4a7f1a4b5f9e235fd508d902f10c590e2419 +(I) [21:15:01.835] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=58c671eb0ab8c3c247ac4c38320a4a70e8eb7d4444daf8459b76ef27ebb785d8 +(I) [21:15:12.017] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9f4a90b78cc53d9f97063d6bd1cc292cb9e677a265594fa6667642aa7268e539 +(I) [21:15:13.007] [000013504]: Local user framerate is [136.493164] +(I) [21:15:13.007] [000013504]: Local user MinDelay=[23ms], MaxDelay=[62ms], AvgDelay=[41ms], minRTT[25ms], maxRTT[164ms], avgRTT[77ms] +(I) [21:15:21.230] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=78e3392551cdf9432be1d4455d8a1031dec81937304cc0066c7a4284d8cd41db +(I) [21:15:31.310] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=46c1bbda12ace5dc5771c518fc522eb2015a64648bac21c8fd78010a6d45c995 +(I) [21:15:32.109] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a5d37b163847774d30010d9e30ca86da7a4c93c97a65f0c15375c2a696064b9b +(I) [21:15:34.002] [000013504]: Local user framerate is [133.729935] +(I) [21:15:34.002] [000013504]: Local user MinDelay=[23ms], MaxDelay=[64ms], AvgDelay=[42ms], minRTT[25ms], maxRTT[164ms], avgRTT[78ms] +(I) [21:15:37.010] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=156/0, mdat=400/800, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=25/6, lb_c=0/0, cast=0/0, cdat=147/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:15:37.569] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9d6b0f8bb9513498b4fc6e96521c382a3028ce7e53c5f185b21bc6df2e0138bd +(I) [21:15:46.642] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=964141b0cf719ea08a7acefd344a10a4d0e41b978dc4656bd57b282b178131a0 +(I) [21:15:48.000] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=42/0, mdat=88/176, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=5/2, lb_c=0/0, cast=0/0, cdat=41/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:15:55.006] [000013504]: Local user framerate is [135.818497] +(I) [21:15:55.006] [000013504]: Local user MinDelay=[36ms], MaxDelay=[56ms], AvgDelay=[43ms], minRTT[42ms], maxRTT[151ms], avgRTT[74ms] +(I) [21:15:57.304] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8f171ce1936f64d3627be030b751aec6cb945c1ffed39c3bf55791b624881fd1 +(I) [21:16:08.012] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9f6a47f522205cfd10bface2e7c3237627c78e624539cf09f4a347b95b2750ab +(I) [21:16:10.054] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=bfdc691a9466aaba8ee37e948b42b9fc295a473d8fec8b31a0276bb8302f5c08 +(I) [21:16:16.006] [000013504]: Local user framerate is [139.022186] +(I) [21:16:16.006] [000013504]: Local user MinDelay=[28ms], MaxDelay=[73ms], AvgDelay=[42ms], minRTT[42ms], maxRTT[151ms], avgRTT[76ms] +(I) [21:16:17.089] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d735b7e11a19ebbd7278c3791c40c19d60f654adfbef0f316629c36510b8b98f +(I) [21:16:23.996] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=90d6e6256847c586cb9459ec0f07fca28038f8ab904de70708ea483122df98ac +(I) [21:16:37.001] [000013504]: Local user framerate is [137.015732] +(I) [21:16:37.001] [000013504]: Local user MinDelay=[28ms], MaxDelay=[73ms], AvgDelay=[42ms], minRTT[41ms], maxRTT[151ms], avgRTT[74ms] +(I) [21:16:38.009] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=181/0, mdat=400/800, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=26/7, lb_c=0/0, cast=0/0, cdat=172/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:16:39.685] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9bc524aa22a9f3d5001d38eecb064afe2a2a28ea4e5e968c45a08dd0d48ed6ee +(I) [21:16:43.152] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:16:43.169] [000013504]: GetPartyStatsByID found 1 teams for user ID 16432 +(I) [21:16:46.388] [000023384]: Read bytes [0,"ChallengeUpdatedMessage",16432,[[8912937,1528297,0,13,1680998400,null],0]] +(I) [21:16:48.972] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=96000612e1dd278ac58485be9e758c7242bd56806c9817b8134c0b9ee158656f +(I) [21:16:49.007] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=48/0, mdat=88/176, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=4/1, lb_c=0/0, cast=0/0, cdat=43/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:16:55.193] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1ef37b0f7081a4ce20b2801110127641e69da886cd36f17e49aeaf5e9936ffce +(I) [21:16:58.007] [000013504]: Local user framerate is [135.149994] +(I) [21:16:58.007] [000013504]: Local user MinDelay=[36ms], MaxDelay=[63ms], AvgDelay=[45ms], minRTT[48ms], maxRTT[186ms], avgRTT[79ms] +(I) [21:17:08.727] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9833efbfc902d69f7113ba8c137de2968b209e4586cf844693f4cbe5695f9da4 +(I) [21:17:10.801] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5312abfc85dfaa1ed70d3fee6f99ae66a1ab89a6e7bd2a58e2197fda43e6d7a3 +(I) [21:17:19.007] [000013504]: Local user framerate is [133.943298] +(I) [21:17:19.007] [000013504]: Local user MinDelay=[33ms], MaxDelay=[63ms], AvgDelay=[44ms], minRTT[36ms], maxRTT[186ms], avgRTT[77ms] +(I) [21:17:19.829] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=b1c496b50e569701b6465ee526d320bb4abfd78597c0126e69aab943adfbb2da +(I) [21:17:34.929] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7a5ce57fbe5265ffa57e2f6f44c2b9727dbec9e2ba537c3559ddf033ab1986a8 +(I) [21:17:39.009] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=191/0, mdat=400/800, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=26/7, lb_c=0/0, cast=0/0, cdat=180/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:17:40.006] [000013504]: Local user framerate is [135.286469] +(I) [21:17:40.006] [000013504]: Local user MinDelay=[29ms], MaxDelay=[63ms], AvgDelay=[44ms], minRTT[25ms], maxRTT[186ms], avgRTT[74ms] +(I) [21:17:40.779] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ab31e6afef3ce952c71d9fb9881a3e749a16fdea9ecd389a01ee447bf0bb8517 +(I) [21:17:50.004] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=36/0, mdat=87/174, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=5/1, lb_c=0/0, cast=0/0, cdat=33/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:17:57.395] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1608e584d739dd341099c499e5e8c57a2a1eacdc640757de5ebec3f11d41a539 +(I) [21:18:01.000] [000013504]: Local user framerate is [139.286072] +(I) [21:18:01.000] [000013504]: Local user MinDelay=[22ms], MaxDelay=[59ms], AvgDelay=[44ms], minRTT[35ms], maxRTT[144ms], avgRTT[70ms] +(I) [21:18:16.363] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=dd6bd143d08fd3db315cf0767b1d866e565ccec35689538dcf93b8b2b542db76 +(I) [21:18:22.003] [000013504]: Local user framerate is [138.565353] +(I) [21:18:22.003] [000013504]: Local user MinDelay=[22ms], MaxDelay=[59ms], AvgDelay=[44ms], minRTT[25ms], maxRTT[155ms], avgRTT[71ms] +(I) [21:18:24.493] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5859954a6fdd3df65cd471b5a5f6a9e67f9c66e6aae98330ee0d852a573b01c5 +(I) [21:18:31.343] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ce6f5130cad0f795659a60560f510389dfb5928f036e0bfc20eb81eb54b63a2e +(I) [21:18:40.004] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=170/0, mdat=400/800, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=26/7, lb_c=0/0, cast=0/0, cdat=160/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:18:42.043] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=691f1bdf06d18a0425ddf6b8c716ffe658d767cd2109edd570472be56a5d9a2d +(I) [21:18:43.003] [000013504]: Local user framerate is [139.643005] +(I) [21:18:43.003] [000013504]: Local user MinDelay=[22ms], MaxDelay=[66ms], AvgDelay=[44ms], minRTT[25ms], maxRTT[155ms], avgRTT[74ms] +(I) [21:18:51.006] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=33/0, mdat=88/176, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=4/1, lb_c=0/0, cast=0/0, cdat=33/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:18:56.661] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f64c67cb1aee4377145c2cf854f0607fc502b54c3f774ebf89750196e11b838b +(I) [21:19:04.006] [000013504]: Local user framerate is [138.729187] +(I) [21:19:04.006] [000013504]: Local user MinDelay=[22ms], MaxDelay=[56ms], AvgDelay=[43ms], minRTT[35ms], maxRTT[94ms], avgRTT[67ms] +(I) [21:19:16.014] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5fc901191956ae2163a9d812dff32bb5ef4e35bb63b4f1eb9b3b17ec96656505 +(I) [21:19:20.825] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3704477d7d5221e2a09c1c7767d3bc96f99f0903eb5a9fe63d0079b087a2dab8 +(I) [21:19:25.005] [000013504]: Local user framerate is [135.445816] +(I) [21:19:25.005] [000013504]: Local user MinDelay=[22ms], MaxDelay=[56ms], AvgDelay=[43ms], minRTT[23ms], maxRTT[145ms], avgRTT[70ms] +(I) [21:19:30.962] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=198aa9be35f8b777d5b3f23e002cf120bead3ac811146dfe7bae6a6475b09664 +(I) [21:19:34.088] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=916facea556b1a9d07de116fce4c527380c16891fbc6d4415c6943318aa42d9a +(I) [21:19:36.752] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6e673e9ac5d3eb47d5a1d9f085694598c3d1ecc8928986e1307db9bf61a5bb5d +(I) [21:19:41.000] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=174/0, mdat=400/800, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=26/7, lb_c=0/0, cast=0/0, cdat=163/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:19:43.018] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4b9d23917f2a0426f73a0559e12a33e3382a943d0b45f7cc63415137762e28d5 +(I) [21:19:46.009] [000013504]: Local user framerate is [138.008591] +(I) [21:19:46.009] [000013504]: Local user MinDelay=[22ms], MaxDelay=[63ms], AvgDelay=[44ms], minRTT[23ms], maxRTT[159ms], avgRTT[72ms] +(I) [21:19:48.567] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=bc63bcca3a3f0cf1ffaf988a5ee2f52bc3cf193e204ba051b5e3d87de06b35c4 +(I) [21:19:52.005] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=56/0, mdat=88/176, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=4/1, lb_c=0/0, cast=0/0, cdat=54/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:20:00.283] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e61ed92cb0ff91645f62cfc88b82b82b9e2edc74b10bfbf9a581dd0ecfd3fe1c +(I) [21:20:07.016] [000013504]: Local user framerate is [133.673248] +(I) [21:20:07.016] [000013504]: Local user MinDelay=[31ms], MaxDelay=[66ms], AvgDelay=[47ms], minRTT[39ms], maxRTT[146ms], avgRTT[73ms] +(I) [21:20:07.465] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=32274cfc0ce3ce038239457003a9182f528962ae68223efdedc74fc243ab23f3 +(I) [21:20:15.796] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=49f0a806d5f320260f4ce2ba1684c7cfa7b89a2086760db8ca093078cbc3e1a1 +(I) [21:20:24.668] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=48214056cafe95508c77831ccff168bbaad19979ebfcaabbe488cd6327cff148 +(I) [21:20:26.304] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a90836ddc0e298b68c3c5ef0599a8b0fff43b11f97c5ec9ee829b20775e00757 +(I) [21:20:26.578] [000023384]: Read bytes [0,"ChallengeUpdatedMessage",16432,[[8912937,1528297,0,15,1680998400,null],0]] +(I) [21:20:26.917] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=95d7ae06f3fd72dfe62e0d9c1aa60359a456eff6e7fac64a4bf300416e848538 +(I) [21:20:27.421] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=503fba83672459bf9b0d5eb6ff1255169aac0c4e39ebeaf5a34501783d5c09f6 +(I) [21:20:28.002] [000013504]: Local user framerate is [128.530716] +(I) [21:20:28.002] [000013504]: Local user MinDelay=[30ms], MaxDelay=[66ms], AvgDelay=[48ms], minRTT[35ms], maxRTT[158ms], avgRTT[74ms] +(I) [21:20:31.778] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=fd60b3e1f746fd98bed52c4afa74af460d5b656f7ba7731c114db7b2e6c46630 +(I) [21:20:33.604] [000023384]: Read bytes [0,"ChallengeUpdatedMessage",16432,[[8912937,1528297,0,16,1680998400,null],0]] +(I) [21:20:41.625] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=c580801894cb8e99ad96b3255558e4dae865bea8b68b5a1a12c245a26ae8554e +(I) [21:20:42.006] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=178/0, mdat=400/800, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=27/8, lb_c=0/0, cast=0/0, cdat=163/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:20:49.006] [000013504]: Local user framerate is [129.973999] +(I) [21:20:49.006] [000013504]: Local user MinDelay=[-1ms], MaxDelay=[0ms], AvgDelay=[0ms], minRTT[4294967295ms], maxRTT[0ms], avgRTT[0ms] +(I) [21:20:53.003] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=26/0, mdat=88/176, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=5/1, lb_c=0/0, cast=0/0, cdat=25/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:21:01.012] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=944605a352abd3f88cd4ef234ac573e387b017a3c2910e2e4bfa4e03c2d95ee2 +(I) [21:21:10.003] [000013504]: Local user framerate is [136.708984] +(I) [21:21:10.003] [000013504]: Local user MinDelay=[36ms], MaxDelay=[57ms], AvgDelay=[48ms], minRTT[43ms], maxRTT[156ms], avgRTT[67ms] +(I) [21:21:13.977] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8fd70b5db3eb2c278cf9b85b240e9c9efcfe11dff985c9a87f73387125051a76 +(I) [21:21:20.428] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4351ac44fea28517e9bc9bea93b046b3cb1d1f422f7a2d882b9af7fb334a4a27 +(I) [21:21:31.002] [000013504]: Local user framerate is [134.073181] +(I) [21:21:31.002] [000013504]: Local user MinDelay=[36ms], MaxDelay=[64ms], AvgDelay=[47ms], minRTT[32ms], maxRTT[156ms], avgRTT[68ms] +(I) [21:21:38.809] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d7e2501e670e7963fc90199f3acad4186f0de3e7cf74d166c2013e7c78c81a42 +(I) [21:21:43.005] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=166/0, mdat=400/800, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=25/7, lb_c=0/0, cast=0/0, cdat=156/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:21:45.831] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=32858b87456df56e347a3eea13bc3f205df98cc2d02152afdb4e3e225fcb9aa0 +(I) [21:21:48.967] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=56bb6add7ff3451d2603e26c1047397325cc773b0ded7222a0fd8eb04e8dc6bf +(I) [21:21:52.002] [000013504]: Local user framerate is [135.779633] +(I) [21:21:52.002] [000013504]: Local user MinDelay=[38ms], MaxDelay=[55ms], AvgDelay=[45ms], minRTT[59ms], maxRTT[86ms], avgRTT[68ms] +(I) [21:21:54.005] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=49/0, mdat=88/176, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=5/1, lb_c=0/0, cast=0/0, cdat=44/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:21:54.120] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=07b1d8c709ac5490521f97aadaff1de3ad1b57c93c25285b7d87d814fb102da5 +(I) [21:22:01.447] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9b6435ada76c9419022ddfa50971bf0af252362ddda2bddb368266e6082061dc +(I) [21:22:09.242] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=000ec94a3ad41d6fbb32805ea6855a2cc094d9e236cc3ca127b4680d7f357387 +(I) [21:22:12.800] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f3a98040eaf61ffb0960e1c29d40fbdaa513b47a133354e30c466141abca835f +(I) [21:22:13.007] [000013504]: Local user framerate is [135.909225] +(I) [21:22:13.007] [000013504]: Local user MinDelay=[35ms], MaxDelay=[55ms], AvgDelay=[43ms], minRTT[35ms], maxRTT[159ms], avgRTT[81ms] +(I) [21:22:17.457] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=425b8c4c8f12ccee5a3e35ba46c3e44329295e46a3555a4d1a62faf2e78436cd +(I) [21:22:20.836] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5b4d346211fecd5a379d4c614c973a572ba41f9c4dcc7cdfc4197c85b4f38534 +(I) [21:22:28.250] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9dd7b204d1bd1101ad408e1c9709cf6d0971cb8e7f8e6dd086f1236b9bb31ede +(I) [21:22:34.007] [000013504]: Local user framerate is [134.039673] +(I) [21:22:34.007] [000013504]: Local user MinDelay=[23ms], MaxDelay=[87ms], AvgDelay=[44ms], minRTT[28ms], maxRTT[159ms], avgRTT[81ms] +(I) [21:22:36.623] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5815cc6b4988c09d3e6de5f4f7ca660f0bc057ab0827898ca850fb1be4ec4887 +(I) [21:22:44.002] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=197/0, mdat=399/798, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=26/7, lb_c=0/0, cast=0/0, cdat=186/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:22:46.682] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2f5ac9deec3b02a9c091441871fce7590b311a294b58cf124fb971591e2a6d6e +(I) [21:22:54.404] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ee7ab55f11c1cc6133fa66c2151c92a9ab6b8bc4dcd545fc9526e6d008a47efb +(I) [21:22:55.004] [000013504]: Local user framerate is [134.343277] +(I) [21:22:55.004] [000013504]: Local user MinDelay=[36ms], MaxDelay=[57ms], AvgDelay=[47ms], minRTT[40ms], maxRTT[123ms], avgRTT[72ms] +(I) [21:22:55.009] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=65/0, mdat=88/176, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=4/1, lb_c=0/0, cast=0/0, cdat=61/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:22:56.875] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d9c07b12ef5de9281005f34e5e703c423fac3e6de8687d427b6fb1ddc75cfe9c +(I) [21:23:00.931] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e73e60ac40f1479fddd2fe798243b9b44fc78ccf74e42804040a24a0693624ce +(I) [21:23:02.907] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=da65541f433a2d76c4690ad0a03ca05c4bfe821985b1559a8473327cc3303ffd +(I) [21:23:13.289] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=895a024330ee8113840b6648647da4cf12ad0c68579ede5dfd41a01d1b91f5ed +(I) [21:23:16.000] [000013504]: Local user framerate is [134.136581] +(I) [21:23:16.000] [000013504]: Local user MinDelay=[29ms], MaxDelay=[57ms], AvgDelay=[44ms], minRTT[33ms], maxRTT[160ms], avgRTT[79ms] +(I) [21:23:17.546] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=25f236bd0ef9a8223daa473e2a1162638999a8d9fa03bddbcaf7cc49cbf0e1e4 +(I) [21:23:25.211] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7f1c0d578985a572067c219919d5f6885f0dbdfa73d2de3d95333b816455fcc3 +(I) [21:23:36.032] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9b4e99fbf72dc15d98d34e8e64096ccdc9fb32b5b0080b51f9afb7dc7838f82b +(I) [21:23:37.002] [000013504]: Local user framerate is [136.015991] +(I) [21:23:37.002] [000013504]: Local user MinDelay=[28ms], MaxDelay=[57ms], AvgDelay=[43ms], minRTT[31ms], maxRTT[160ms], avgRTT[77ms] +(I) [21:23:45.003] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=200/0, mdat=400/800, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=26/7, lb_c=0/0, cast=0/0, cdat=190/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:23:50.170] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1d0f97a541e9335648e3b14c98d10fc945bb06ca03cb901018f9f481ff3857fd +(I) [21:23:56.004] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=54/0, mdat=88/176, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=5/1, lb_c=0/0, cast=0/0, cdat=49/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:23:58.002] [000013504]: Local user framerate is [135.149994] +(I) [21:23:58.002] [000013504]: Local user MinDelay=[35ms], MaxDelay=[52ms], AvgDelay=[42ms], minRTT[28ms], maxRTT[142ms], avgRTT[75ms] +(I) [21:24:03.751] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=bdcceb0bfb037255eb646109f78f096a396978092584ba83af01324577756e91 +(I) [21:24:18.485] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6550dbc344ed7233a4c599880527097ec1c63a7c68cea2326b75a25e18b53e08 +(I) [21:24:19.005] [000013504]: Local user framerate is [137.451874] +(I) [21:24:19.005] [000013504]: Local user MinDelay=[29ms], MaxDelay=[53ms], AvgDelay=[43ms], minRTT[28ms], maxRTT[158ms], avgRTT[75ms] +(I) [21:24:23.906] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d43d3ddb76ae161d8d20fab44c615db9013e5f5e43388723942957889fc75f86 +(I) [21:24:26.698] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=98cff97fac1a2969dc74649bd8f61933d486845a6567af3bfa1e578dc5dc5905 +(I) [21:24:29.805] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=a18b07eb75104f37ac62fec0ddadb5ceaef3097aca69252f8b4335c39dda1cd8 +(I) [21:24:40.009] [000013504]: Local user framerate is [133.529968] +(I) [21:24:40.009] [000013504]: Local user MinDelay=[29ms], MaxDelay=[61ms], AvgDelay=[45ms], minRTT[26ms], maxRTT[158ms], avgRTT[74ms] +(I) [21:24:40.491] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3440ba09af1088481074aa40cb06873f6b79e4abba420480048ec7219f4a0cd5 +(I) [21:24:45.667] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=957335429854b48f28ec113f1a0333973233cdb61254fd1e9bfed398ea905e6f +(I) [21:24:46.003] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=216/0, mdat=400/800, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=25/7, lb_c=0/0, cast=0/0, cdat=198/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:24:51.584] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=36dacc8fa26de0f879abea1a1ed6b8977c81a67836a6162b43fea550b30537aa +(I) [21:24:54.139] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=30694080fea25301e8b0f725a2f0f719195caf12723bd0911a0448c1c41e1672 +(I) [21:24:57.007] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=44/0, mdat=88/176, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=7/2, lb_c=0/0, cast=0/0, cdat=42/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:24:57.207] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=251b968796741db14569d45e325d0b33b91d5f9d85851d28d94027566f774097 +(I) [21:25:01.002] [000013504]: Local user framerate is [128.787109] +(I) [21:25:01.002] [000013504]: Local user MinDelay=[32ms], MaxDelay=[55ms], AvgDelay=[44ms], minRTT[35ms], maxRTT[147ms], avgRTT[73ms] +(I) [21:25:07.861] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=533b75f4cb516c5a1b593a64da76bffd2eb84141d98378213f67e4444fa8f037 +(I) [21:25:11.737] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=3b101558c4224a00d964304839b423beb1386cc989183a485fe6c364e18ed940 +(I) [21:25:14.430] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5e5f0b60b1446a67a11a5ef188614bd92ec0376d46ab04b1e17b6233b53c5a73 +(I) [21:25:21.885] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=68b96a4087742c56208ae7a245784b454ae55bbbf6f13863d848f3c301029e27 +(I) [21:25:22.002] [000013504]: Local user framerate is [126.874619] +(I) [21:25:22.002] [000013504]: Local user MinDelay=[29ms], MaxDelay=[62ms], AvgDelay=[45ms], minRTT[35ms], maxRTT[151ms], avgRTT[72ms] +(I) [21:25:24.296] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=bae805cb45d33e6a1815e1f5d302c3b8cf79d7b4dbe5c6dd44b9615c755617e7 +(I) [21:25:33.792] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=486b8e36e5045c81f8011b2d4ba4a0a8b74bbe8cf8a3bc2c69c7908ffc30e135 +(I) [21:25:41.580] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=94cf0cccd98d935032c9fa9348fd44dca59da5401b55ab6f2409a49f32f1a15a +(I) [21:25:43.001] [000013504]: Local user framerate is [128.543564] +(I) [21:25:43.001] [000013504]: Local user MinDelay=[29ms], MaxDelay=[76ms], AvgDelay=[46ms], minRTT[28ms], maxRTT[151ms], avgRTT[71ms] +(I) [21:25:47.010] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=233/0, mdat=400/800, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=24/6, lb_c=0/0, cast=0/0, cdat=212/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:25:48.980] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ef2628548abbb495727c73c85e82c01812d68079205ced57511c22fb84ab91b7 +(I) [21:25:58.008] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=35/0, mdat=88/176, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=6/2, lb_c=0/0, cast=0/0, cdat=35/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:25:59.432] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=79ee67d27adf704ca50474a01260b3104fb4beb0538a98e0f6427ac21ba16018 +(I) [21:26:04.003] [000013504]: Local user framerate is [130.793457] +(I) [21:26:04.003] [000013504]: Local user MinDelay=[37ms], MaxDelay=[71ms], AvgDelay=[48ms], minRTT[30ms], maxRTT[141ms], avgRTT[67ms] +(I) [21:26:05.091] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=6e591e8061220152a1d0eeb12e91e07801c0bb87eb85c178e8be3cd9909173f7 +(I) [21:26:12.458] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=8be1a2dea1c9de225b07bb8e1df724cfe701b4637f49c82ad42c9155ff0a72cc +(I) [21:26:14.572] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=5c35a9fd2f258285d59c27a579ae040491e07bf9014abed0e05766a0d7f035c8 +(I) [21:26:20.104] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9403b6eba683bff0bcf3b32933159fafa6e09fc331dca4d082cc0877791e5481 +(I) [21:26:23.278] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d7e16162f69fbd66a6f3b379040a3cb346d271d1d7fd34063321a0eee7eacf5f +(I) [21:26:25.004] [000013504]: Local user framerate is [128.874222] +(I) [21:26:25.004] [000013504]: Local user MinDelay=[37ms], MaxDelay=[71ms], AvgDelay=[48ms], minRTT[30ms], maxRTT[160ms], avgRTT[70ms] +(I) [21:26:27.089] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=49ab7bc908ff23d17b7fc0a1ee856fc1940114a2c40d134cabfaf5381a24b163 +(I) [21:26:31.806] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9013a7a12405906f8b3fc99f180555e6025c3dfd696fd0d7dc2f130216368797 +(I) [21:26:41.375] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=775925b6d94c3ce9ebe03c250f257243514dbdc0550263e58a49f3cd16ae5a55 +(I) [21:26:46.004] [000013504]: Local user framerate is [126.605675] +(I) [21:26:46.004] [000013504]: Local user MinDelay=[32ms], MaxDelay=[85ms], AvgDelay=[47ms], minRTT[23ms], maxRTT[160ms], avgRTT[70ms] +(I) [21:26:48.009] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=225/0, mdat=400/800, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=24/6, lb_c=0/0, cast=0/0, cdat=206/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:26:53.456] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=d051ac70de595584f4dd15d76610bac5888fd2822511a26b7f3b0713d00d8c78 +(I) [21:26:55.426] [000013504]: GameObj::SchedulePeerForDestruction - info, frame [10604], peer for station [2] scheduled for destruction on frame 10605. +(I) [21:26:55.426] [000013504]: GameObj::SchedulePeerForDestruction - handling UI call to inform user of drop. +(I) [21:26:55.426] [000013504]: GAME -- Frame 10604 - SchedulePeerForDestruction - peer 1000 scheduledfor destruction +(I) [21:26:55.444] [000013504]: Picked to migrate AI to network station id: 1 +(I) [21:26:55.500] [000013504]: GameObj - AI Simulation for player [1000] migrated to local station [1]. +(I) [21:26:55.500] [000013504]: GameObj::KillAllDropped - Processing disconnected player [1000], set to migrate to station [1]. +(I) [21:26:55.681] [000013504]: MOD -- Player Imperial Dane set to AI Type: Remote Human Takeover (frame 10606) (CmdAI) +(I) [21:26:55.699] [000013504]: Movie Manager -- No movies with locale [fr] exist on disk. Switching to fallback locale [en]. +(I) [21:26:55.720] [000013504]: Movie Manager -- No movies with locale [fr] exist on disk. Switching to fallback locale [en]. +(I) [21:26:58.255] [000013504]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [21:26:58.255] [000013504]: WorldwidePartyService::PeerRemove, Removing peer ID: 2 +(I) [21:26:58.255] [000013504]: peerremove - peerIDRemoved=1968, reasonID=1000, reason debug hint - MatchSetup::Disconnect +(I) [21:26:58.255] [000013504]: ServerSynchronization::OnDestroyedPeerEvent - info, drop event received for remote station [2]. +(I) [21:26:58.255] [000013504]: GameObjController - OnMatchEvent: event type 1 +(I) [21:26:58.262] [000013504]: Sending matchinfo change #46 +(I) [21:26:58.262] [000013504]: GameObjController - OnMatchEvent: event type 6 +(E) [21:26:58.386] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [21:26:59.005] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=1/0, drop=0/2, data=45/2, mdat=87/174, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=2/4, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=2/2, lb_p=7/2, lb_c=0/0, cast=0/0, cdat=38/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:27:00.428] [000013504]: MOD -- Game Over at frame 10644 +(I) [21:27:00.462] [000013504]: Report sent for profileID[1968] -> race=[137123], result=[0], XP Gain=[7029] +(I) [21:27:00.462] [000013504]: Report sent for profileID[16432] -> race=[203852], result=[1], XP Gain=[11241] +(I) [21:27:00.483] [000013504]: Party::SetStatus - S_CONFIGURING +(I) [21:27:00.494] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=059367eeb871c15f26d14535b096dcf933ea510e71da01541482ad902f435798 +(I) [21:27:00.494] [000013504]: Sending matchinfo change #14 +(E) [21:27:00.612] [000013504]: Rejecting packet type 0 that claims to come from ourself +(I) [21:27:01.314] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=7a8f941336d10416a17c13183425f181d0c4f334557e79e941162ab53bb69357 +(I) [21:27:01.601] [000013504]: MPMatchSetup::OnMatchEvent - MET_ReportResults - result [0] +(I) [21:27:01.601] [000013504]: GameObjController - OnMatchEvent: event type 9 +(I) [21:27:01.819] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1b5411680a7cb2606eb1308ecdaaec0315b008a0edd44d616fe3a872d8d79325 +(I) [21:27:01.891] [000023384]: Read bytes [0,"AvatarStatsUpdatedMessage",16432,[[[4,16432,78,"",1680463621]]]] +(I) [21:27:01.891] [000023384]: Read bytes [0,"AvatarStatsUpdatedMessage",16432,[[[5,16432,64,"",1680463621]]]] +(I) [21:27:01.891] [000023384]: Read bytes [0,"AvatarStatsUpdatedMessage",16432,[[[6,16432,87495,"",1680463621]]]] +(I) [21:27:01.891] [000023384]: Read bytes [0,"AvatarStatsUpdatedMessage",16432,[[[14,16432,72506,"",1680463621]]]] +(I) [21:27:01.891] [000023384]: Read bytes [0,"AvatarUpdateMessage",16432,[[1403,16432,"/steam/76561198005864560","","UMirinBrah?","",11893,1261,1261,2074389,null,"76561198005864560",3,[]]]] +(I) [21:27:01.891] [000023384]: Read bytes [0,"GameResultNotificationMessage",16432,[[[1968,20,137123,0,[1],2112,[["unitprod",39],["vvetrank",8],["cabil",6],["dmgdone",5972],["plost",27],["svetrank",1],["reqmax",0],["cpearn",7],["reqspnt",0],["powearn",0],["blost",5],["elitekill",-6],["edeaths",61],["structdmg",0],["pcap",34],["inactperiod",14],["lowintperiod",0],["precap",22],["sqkill",1],["popmax",0],["powspnt",0],["sqprod",11],["bprod",12],["svetxp",1500],["vabnd",0],["addonkill",65],["totalcmds",1071],["gammaspnt",0],["vkill",0],["objdmh",0],["abil",37],["sqlost",8],["vcap",0],["vlost",0],["gt",1325],["upg",101],["vvetxp",9300],["reqearn",0],["vp1",0],["vp0",0],["erein",32],["cflags",0],["wpnpu",0],["ekills",59],["powmax",0],["vprod",2]],0,0,[],null,[],[],[],[],[],[]],[16432,20,203852,1,[1],11893,[["unitprod",36],["vvetrank",10],["cabil",1],["dmgdone",7063],["plost",22],["svetrank",2],["reqmax",0],["cpearn",2],["reqspnt",0],["powearn",0],["blost",0],["elitekill",0],["edeaths",65],["structdmg",0],["pcap",29],["inactperiod",12],["lowintperiod",0],["precap",27],["sqkill",8],["popmax",0],["powspnt",0],["sqprod",10],["bprod",10],["svetxp",5400],["vabnd",0],["addonkill",55],["totalcmds",1737],["gammaspnt",0],["vkill",0],["objdmh",0],["abil",11],["sqlost",1],["vcap",0],["vlost",0],["gt",1330],["upg",85],["vvetxp",10900],["reqearn",0],["vp1",0],["vp0",0],["erein",51],["cflags",0],["wpnpu",0],["ekills",55],["powmax",0],["vprod",2]],0,10,[],null,[],[],[],[],[],[]]],[[2112,2130261,51,27,-1,0,0,32,2852,16,1501,13,1428,1680463621],[11893,2130257,50,13,2,0,0,45,2265,19,1075,13,1460,1680463621]],[[7,1968,107,"",1680461935],[9,1968,132801,"",1680461935],[15,1968,96938,"",1680461935],[4,16432,78,"",1680461744],[5,16432,64,"",1680461744],[6,16432,87495,"",1680461744],[14,16432,72506,"",1680461744]],5811747,"",[]]] +(I) [21:27:01.897] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:01.897] [000013504]: RNT_StatsUpdate: Loss notification, profileID 1968, race =137123, level=13, ranking=32 +(I) [21:27:01.897] [000013504]: RNT_StatsUpdate: Win notification, profileID 16432, race =203852, level=13, ranking=45 +(I) [21:27:02.321] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9a9aa80b3ed6baff96e1a0d7d984f58f07699bff1d05bf460573a22974640654 +(I) [21:27:02.827] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ce02785121b95792a50234eac62ef4d77c31f799a5be77fa2703d67025863236 +(I) [21:27:03.197] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:03.211] [000013504]: GetPartyStatsByID found 1 teams for user ID 16432 +(I) [21:27:03.331] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=51dd361d1765d7ce50a43f6b708e282835f6ad2a83a247f40b93bc67b6191d0e +(I) [21:27:03.479] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:03.479] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:03.479] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:03.479] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:03.479] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:03.479] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:03.479] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:03.479] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:03.479] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:03.479] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:03.479] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:03.479] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:03.479] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:03.479] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:03.479] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:03.479] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:03.479] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:03.479] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:03.479] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:03.479] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:03.479] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:03.479] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:03.479] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:03.479] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:03.479] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:03.479] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:03.479] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:03.479] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:03.479] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:03.692] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:03.692] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:03.834] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=1e30b77e804f7ee66abb3b7cecbe33aeff24fa30cf40340c0879aa6068188766 +(I) [21:27:04.067] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:04.067] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:04.067] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:04.067] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:04.067] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:04.067] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:04.067] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:04.067] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:04.067] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:04.067] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:04.067] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:04.067] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:04.067] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:04.067] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:04.067] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:04.067] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:04.067] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:04.067] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:04.067] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:04.067] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:04.067] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:27:14.043] [000019412]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [None] +(I) [21:27:14.053] [000019412]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [None] +(I) [21:27:14.053] [000019412]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [21:27:20.012] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=f4e30295d93a4c754523f456767b81c6056f6367de9a273b09e660056e737a15 +(I) [21:27:49.004] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=5/2, mdat=12/24, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=1/2, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=1/1, lb_p=38/6, lb_c=0/0, cast=0/0, cdat=4/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=1/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:28:00.004] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=10/2, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:28:50.008] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=39/6, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:29:01.000] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=9/2, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:29:51.009] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=39/6, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:29:56.011] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=ecf4209779cc7e9c08766734fc94f4eb25a58b2cc40a59ff84331be1476edbf4 +(I) [21:30:02.008] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=9/2, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:30:52.006] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=40/6, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:31:03.001] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=10/2, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:31:53.001] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=40/7, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:32:04.009] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=8/1, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:32:54.005] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=40/7, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:33:05.007] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=8/1, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:33:55.003] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=41/7, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:34:06.005] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=9/1, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:34:56.010] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=40/7, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:34:57.013] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=e03bccc3d95bc21313536e477cd8fe38876f995bf80f7f7d93e6ce5756bd5b76 +(I) [21:35:07.003] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=8/1, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:35:57.001] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=42/7, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:36:08.006] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=8/2, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:36:58.008] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=40/7, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:37:09.006] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=8/1, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:37:59.002] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=41/7, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:38:10.009] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=8/1, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:39:00.005] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=41/7, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:39:11.005] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=8/1, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:39:52.010] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=46215554fd8786ca9876c439c18b4cbe6d05ab15f9137ec780d30b7e285b570d +(I) [21:40:01.001] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=40/7, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:40:12.007] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=8/1, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:41:02.001] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=40/7, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:41:13.002] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=10/2, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:42:03.003] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=40/6, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:42:14.010] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=9/2, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:43:04.008] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=39/6, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:43:15.005] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=9/2, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:44:05.002] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=39/6, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:44:16.000] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=10/2, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:44:59.012] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=2650941bf8fde7c3f8b5c7194ac95cec6ef219c96fcf5179bc80183658ff7741 +(I) [21:45:06.010] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=39/6, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:45:17.003] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=10/2, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:46:07.004] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=39/6, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:46:18.009] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=9/2, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:47:08.006] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=41/7, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:47:19.007] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=8/1, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:48:09.008] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=40/7, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:48:20.009] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=9/1, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:49:10.010] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=40/7, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:49:21.009] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=8/1, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:50:00.007] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=89d4183ed47ec75ea399239b9efb86710cb5d2df41a8464ce7facb15727bf3dd +(I) [21:50:11.009] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=41/7, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:50:22.001] [000017140]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=0/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=8/1, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [21:51:00.943] [000019412]: RENDERING - new resize requested [2560, 1440] reason [WindowSizeEvent] +(I) [21:51:00.943] [000019412]: RENDERING - Starting compositor fullscreen transition [1] +(I) [21:51:00.943] [000019412]: RENDERING - Setting Fullscreen On +(I) [21:51:01.041] [000019412]: RENDERING - state Size [2560 x 1440], fullscreen size[2560 x 1440] +(I) [21:51:01.044] [000019412]: RENDERING - Finished compositor fullscreen transition [1] +(I) [21:51:01.044] [000019412]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [21:51:01.046] [000019412]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [21:51:01.046] [000019412]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [21:51:01.070] [000019412]: RENDERING - new resize requested [2578, 1487] reason [WindowSizeEvent] +(I) [21:51:01.070] [000019412]: RENDERING - resize request clobbering old request [2578, 1487] reason [WindowSizeEvent] +(I) [21:51:01.070] [000019412]: RENDERING - new resize requested [2560, 1440] reason [WindowSizeEvent] +(I) [21:51:01.070] [000019412]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [21:51:01.077] [000019412]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [21:51:01.077] [000019412]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [21:51:01.900] [000013504]: GameApp::SetTargetState : new (UnloadedGame) old (Uninitialized) +(I) [21:51:01.910] [000013504]: GameApp::SetState : new (UnloadingGame) old (Game) +(I) [21:51:02.929] [000013504]: GameObj::ShutdownGameObj +(I) [21:51:02.929] [000013504]: GetMaxFrameTimeFromProfile: players=2 expected FPS=100.000000, bars=0, max avg=0.000, sd=0.000, 0 samples = +(I) [21:51:02.929] [000013504]: PerformanceRecorder::EndRecording - game size=2, max average=0.007899, worst frame=0.010000 +(I) [21:51:02.929] [000013504]: Recording: No [2 players] + +(I) [21:51:02.929] [000013504]: Max/Avg: 0.01, 0.01 sec (fps=126.61, 140.47) (138 samples) + +(I) [21:51:02.929] [000013504]: Bars: 0 + +(I) [21:51:02.929] [000013504]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_seconds_played] +(I) [21:51:02.929] [000013504]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_units_produced] +(I) [21:51:02.929] [000013504]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_units_killed] +(I) [21:51:02.929] [000013504]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_units_lost] +(I) [21:51:02.941] [000013504]: StatArtWarningsCount 0 +(I) [21:51:02.941] [000013504]: StatDataWarningsCount 0 +(I) [21:51:03.435] [000013504]: GameApp::SetState : new (UnloadedGame) old (UnloadingGame) +(I) [21:51:03.435] [000013504]: GameApp::SetTargetState : new (Uninitialized) old (UnloadedGame) +(I) [21:51:03.454] [000013504]: SessionID : 58ae23 - Disconnect called with reasonID 1000 - MatchSetup::Disconnect +(I) [21:51:03.454] [000013504]: MatchSetupManager: Removed queued match [rural_town_2p_mkii] Queue is now [0] +(I) [21:51:03.454] [000013504]: SessionID : 58ae23 - Disconnect called with reasonID 1000 - MatchSetup::Disconnect +(I) [21:51:03.462] [000013504]: Disconnect process already running +(I) [21:51:03.464] [000013504]: SessionID : 58adc8 - Disconnect called with reasonID 1000 - Destroying Party +(E) [21:51:03.487] [000013504]: SetVisible called while !IsConnected +(E) [21:51:03.498] [000013504]: SetVisible called while !IsConnected +(I) [21:51:05.400] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:05.414] [000013504]: GetPartyStatsByID found 1 teams for user ID 16432 +(I) [21:51:06.410] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:06.410] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:06.410] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:06.410] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:06.410] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:06.410] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:06.410] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:06.410] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:06.410] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:06.411] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:06.411] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:06.411] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:06.411] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:06.411] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:06.411] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:06.411] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:06.411] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:06.411] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:06.411] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:06.411] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:06.411] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:06.411] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:06.411] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:06.411] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:06.411] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:06.411] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:06.411] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:06.411] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:06.411] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:06.650] [000013504]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [21:51:06.650] [000013504]: WorldwidePartyService::PeerRemove, Removing peer ID: 1 +(I) [21:51:06.650] [000013504]: peerremove - peerIDRemoved=16432, reasonID=1000, reason debug hint - MatchSetup::Disconnect +(E) [21:51:06.651] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:06.662] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:06.673] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:06.684] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:06.695] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [21:51:06.700] [000013504]: PeerRemoveAll - flushing local session peer data +(I) [21:51:06.700] [000013504]: LeaveSessionInternal - no action taken, needLeave=0, service=0 +(I) [21:51:06.700] [000013504]: Destroyed Matchinfo +(E) [21:51:06.700] [000013504]: Socks::Free: Socket 0/6492 did not close properly before being freed. +(I) [21:51:06.700] [000013504]: OnDestroyPartyNotification - partyID = 5811747, prevID = -1 +(I) [21:51:06.700] [000013504]: OnDestroyPartyNotification - partyID = 5811747, prevID = -1 +(I) [21:51:06.911] [000013504]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [21:51:06.911] [000013504]: WorldwidePartyService::PeerRemove, Removing peer ID: 1 +(I) [21:51:06.911] [000013504]: peerremove - peerIDRemoved=16432, reasonID=1000, reason debug hint - Destroying Party +(E) [21:51:06.914] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:06.925] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:06.936] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:06.947] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:06.958] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:06.969] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:06.980] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:06.990] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:07.001] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:07.012] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:07.023] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:07.034] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:07.045] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:07.056] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:07.067] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:07.078] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:07.089] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:07.100] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:07.111] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:07.122] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:07.133] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:07.144] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:07.155] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:07.166] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:07.177] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:07.188] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:07.199] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:07.210] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:07.221] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:07.232] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:07.243] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:07.253] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:07.264] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [21:51:07.275] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:07.275] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:07.275] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:07.275] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:07.275] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:07.275] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:07.275] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:07.275] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:07.275] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:07.275] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:07.275] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:07.275] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:07.275] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:07.275] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:07.275] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:07.275] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:07.275] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:07.275] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:07.275] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:07.275] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:07.275] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:07.275] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:07.275] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:07.275] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:07.275] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:07.275] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(I) [21:51:07.275] [000013504]: Avatar update: C00T16R00X-01 52656C690266 +(E) [21:51:07.275] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:07.286] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:07.297] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:07.308] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:07.319] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:07.330] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [21:51:07.341] [000017140]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [21:51:07.345] [000013504]: PeerRemoveAll - flushing local session peer data +(I) [21:51:07.345] [000013504]: LeaveSessionInternal - no action taken, needLeave=0, service=0 +(I) [21:51:07.345] [000013504]: Destroyed Matchinfo +(E) [21:51:07.345] [000013504]: Socks::Free: Socket 0/11200 did not close properly before being freed. +(I) [21:51:07.345] [000013504]: OnDestroyPartyNotification - partyID = 5811656, prevID = -1 +(I) [21:51:07.345] [000013504]: OnDestroyPartyNotification - partyID = 5811656, prevID = -1 +(I) [21:51:10.824] [000013504]: GameApp::SetTargetState : new (Quit) old (Uninitialized) +(I) [21:51:10.831] [000013504]: GameApp::SetState : new (FrontEnd) old (UnloadedGame) +(I) [21:51:10.894] [000013504]: GameApp::SetState : new (Unloaded) old (FrontEnd) +(I) [21:51:10.905] [000013504]: GameApp::SetState : new (Quit) old (Unloaded) +(I) [21:51:11.415] [000013504]: WWise Terminating +(I) [21:51:11.415] [000013504]: Terminating SoundEngine +(I) [21:51:11.529] [000013504]: Terminating Streaming Manager +(I) [21:51:11.529] [000013504]: Terminating Memory Manager +(I) [21:51:11.612] [000019412]: Unregistered essence thread: [Render_Thread] +(I) [21:51:13.359] [000016652]: Unregistered essence thread: [Simulation_Thread] +(I) [21:51:13.378] [000013504]: RPC -- Stopping RpcServer +(I) [21:51:13.378] [000012352]: Unregistered essence thread: [AI_Thread] +(I) [21:51:13.379] [000013504]: Purging: Resource [Terrain Material Mask]-[data:art\scenarios\textures\splats\fx\damage\fx_ground_scorch.tmm] still referenced! [visible] +(I) [21:51:13.379] [000013504]: Purging: Resource [Terrain Material Mask]-[data:art\scenarios\textures\splats\debris\debris_bits_01.tmm] still referenced! [visible] +(I) [21:51:13.381] [000013504]: call to FlushJobs +(I) [21:51:13.455] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=9c6a389aa4c91daed30ba5986c02532bcee4fe910288f73e8d1969b389ea1c99 +(I) [21:51:14.658] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=30cf7a71a6515f05a7d59f1c1440a277d2d4ff573319e3aa5702b9678de6268f +(E) [21:51:18.384] [000013504]: NetworkManagerInternal waited 5003 ms for async jobs to complete without success +(E) [21:51:18.384] [000013504]: WorldwideAdvertisementService_ApplyPlatformFilterJob job did not complete before NetworkManagerInternal shut down +(E) [21:51:18.384] [000013504]: WorldwideAdvertisementService_ApplyPlatformFilterJob job did not complete before NetworkManagerInternal shut down +(E) [21:51:18.384] [000013504]: WorldwideAdvertisementService_ApplyPlatformFilterJob job did not complete before NetworkManagerInternal shut down +(I) [21:51:18.384] [000013504]: call to FlushJobs +(I) [21:51:18.581] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=4f1261d75d13cdb171f93dd5da8ae29bd95181cb80c14a745d762e27e88ef382 +(E) [21:51:18.597] [000023384]: Socks::Free: Socket 0/5836 did not close properly before being freed. +(I) [21:51:19.084] [000013504]: outAuthorizationHeader: AWS4-HMAC-SHA256 Credential=AKIAR7MRD2BR6CSNF3GZ/20230402/us-east-1/kinesis/aws4_request,SignedHeaders=content-length;content-type;host;user-agent;x-amz-date;x-amz-target,Signature=01912ed9b54f650e878169c39822fdef0c6038cb572e417f90a6c2a648c6793d +(E) [21:51:23.388] [000013504]: NetworkManagerInternal waited 5004 ms for async jobs to complete without success +(E) [21:51:23.388] [000013504]: WorldwideAdvertisementService_ApplyPlatformFilterJob job did not complete before NetworkManagerInternal shut down +(E) [21:51:23.388] [000013504]: WorldwideAdvertisementService_ApplyPlatformFilterJob job did not complete before NetworkManagerInternal shut down +(E) [21:51:23.388] [000013504]: WorldwideAdvertisementService_ApplyPlatformFilterJob job did not complete before NetworkManagerInternal shut down +(I) [21:51:23.389] [000013504]: Beginning call to ~NetworkManagerInternal +(I) [21:51:23.389] [000013504]: ~NetworkManagerInternal is about to join threads +(I) [21:51:23.443] [000013504]: We have reached the end of ~NetworkManagerInternal +(E) [21:51:23.443] [000013504]: Socks::Free: Socket 0/1584 did not close properly before being freed. +(I) [21:51:23.446] [000013504]: Automatch2Internal: Fade to black +(I) [21:51:23.446] [000013504]: AutomatchInternal: Fade to black +(I) [21:51:24.062] [000013504]: FILESYSTEM -- filepath failed to remove alias, missing alias 'stats' +(I) [21:51:24.413] [000013504]: Unregistered essence thread: [Main_Thread] +(I) [21:51:24.415] [000013504]: Threading system shutdown + +Application closed without errors diff --git a/src-tauri/test_assets/warnings-3.log b/src-tauri/test_assets/warnings-3.log new file mode 100644 index 0000000..7cc6c4a --- /dev/null +++ b/src-tauri/test_assets/warnings-3.log @@ -0,0 +1,1383 @@ +RelicCoH3 started at 2024-01-07 19:33 [Paris, Madrid UTC 01:00] +OS Win 10.0.19045, 32685MB Physical Memory, 22672 Physical Available, 44973 Virtual Total, 29359 Virtual Available, 12288 Page file. +RUN-OPTIONS [-crash_on_initlist_failure] +WORKING-DIR [C:\Program Files (x86)\Steam\steamapps\common\Company of Heroes 3\] +USER [Cutil] +COMPUTER [DESKTOP-TQF4QTI] +LOCALE [fr-FR] + +(I) [19:33:18.391] [000010680]: Version.cpp - translation info queried modulefilename C:\Program Files (x86)\Steam\steamapps\common\Company of Heroes 3\RelicCoH3.exe, len 1604 +(I) [19:33:18.391] [000010680]: Version [1.4.3.21751] Info [[Anvil][anvil][stable][rtm][4092130]] +(I) [19:33:18.464] [000010680]: GameApp::SetState : new (Uninitialized) old (Uninitialized) +(I) [19:33:18.464] [000010680]: Loading step: [Platform] +(I) [19:33:18.465] [000010680]: Loading step: [Logger thread] +(I) [19:33:18.465] [000010680]: Loading step: [TimeStamp] +(I) [19:33:18.465] [000010680]: Loading step: [Timeout thread] +(I) [19:33:18.465] [000010680]: Loading step: [CorruptInstallNotifier] +(I) [19:33:18.465] [000010680]: Loading step: [CoInitialize] +(I) [19:33:18.465] [000010680]: Loading step: [Process setup] +(I) [19:33:18.465] [000010680]: Loading step: [MemoryEnvironment] +(I) [19:33:18.822] [000010680]: Loading step: [InitReflectSystem] +(I) [19:33:18.865] [000010680]: Loading step: [InitGameActivator] +(I) [19:33:18.865] [000010680]: Loading step: [InitThreadingModel] +(I) [19:33:18.865] [000010680]: Primary CPU is a 3792MHz [Intel(R) Core(TM) i7-10700K CPU @ 3.80GHz] running at 3792MHz +(I) [19:33:18.865] [000010680]: Architecture [9], Level [6], Revision [42245]. +(I) [19:33:18.865] [000010680]: 16 logical processor(s) detected. +(I) [19:33:18.865] [000010680]: 8 physical processor(s) detected. +(I) [19:33:18.865] [000010680]: 1 processor(s) nodes detected. +(I) [19:33:18.865] [000010680]: Threading system initialized to [16]/[16] cores +(I) [19:33:18.865] [000010680]: Loading step: [ThreadingModel Main thread] +(I) [19:33:18.865] [000010680]: Registered essence thread: [Main_Thread] usesRcssWorkerThreads: [true] +(I) [19:33:18.865] [000010680]: Loading step: [Taskbar] +(I) [19:33:18.867] [000010680]: Loading step: [Additional crash information] +(I) [19:33:18.867] [000010680]: Loading step: [Single Instance Check] +(I) [19:33:18.867] [000010680]: Loading step: [Config File] +(I) [19:33:18.903] [000010680]: GAME -- Current Steam name is [UMirinBrah?] +(I) [19:33:18.903] [000010680]: GAME -- steam returned language 'french' +(I) [19:33:18.907] [000010680]: GAME -- [Company of Heroes 3] set to language [fr] +(I) [19:33:18.920] [000010680]: Loading step: [Render Window] +(I) [19:33:18.920] [000010680]: Loading step: [Statgraph] +(I) [19:33:18.920] [000010680]: Loading step: [StatGraph Stats] +(I) [19:33:18.920] [000010680]: Loading step: [ArchiveManager] +(I) [19:33:18.920] [000010680]: Loading step: [Filesystem] +(I) [19:33:18.920] [000010680]: Using [C:\Users\Cutil\Documents\My Games\Company of Heroes 3\] as base writable folder +(I) [19:33:18.920] [000010680]: Game -- System temp path is [C:\Users\Cutil\AppData\Local\Temp\] +(I) [19:33:18.924] [000010680]: Loading step: [FileLogger] +(I) [19:33:18.924] [000010680]: Loading step: [Lua GameBinding Traits] +(I) [19:33:18.924] [000010680]: Loading step: [Lua Libraries] +(I) [19:33:18.924] [000010680]: Loading step: [System Config] +(I) [19:33:18.924] [000010680]: FILESYSTEM -- filepath failure, missing alias 'peruserdata:configuration_user.lua' +(I) [19:33:18.932] [000010680]: Loading step: [TelemetryController] +(I) [19:33:18.932] [000010680]: Loading step: [User Folder Unloader] +(I) [19:33:18.932] [000010680]: Loading step: [Load/Save Config Settings] +(I) [19:33:18.933] [000010680]: Loading step: [Warnings] +(I) [19:33:18.933] [000010680]: Loading step: [Load Debug Symbols] +(I) [19:33:18.933] [000010680]: Loading step: [InitStateTreeManager] +(I) [19:33:18.933] [000010680]: Loading step: [Prerequisite Manager] +(I) [19:33:18.933] [000010680]: Loading step: [Prerequisite Entries] +(I) [19:33:18.933] [000010680]: Loading step: [GameModule Pre Mod Interface Init] +(I) [19:33:18.933] [000010680]: Loading step: [ModManager] +(I) [19:33:18.933] [000010680]: MODULE -- Creating module 'RelicGame'. +(I) [19:33:18.933] [000011860]: DB -- Unable to load symbols. +(I) [19:33:18.951] [000010680]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\attrib.sga 66719345 B [ID:cc658689e8327aa213f047ca598ee0c9] [Ver:6bf0b2092c6a7202b3ceb293df9fc291] [Sig:9408311714722883917] +(I) [19:33:18.977] [000010680]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\engine\archives\data.sga 31094659 B [ID:16c0f95516b6bd76239a8a743a290dba] [Ver:cb8ce9137b7fdfe9c1515d3248a46caa] [Sig:17630469950595459034] +(I) [19:33:18.982] [000010680]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\engine\archives\ui.sga 1115557 B [ID:09480279ef1f221e1467f0feeeb28aa2] [Ver:7ead600abc5691f8935583abec64e527] [Sig:9847253243097634741] +(I) [19:33:18.987] [000010680]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\common\archives\data.sga 92639 B [ID:16c0f95516b6bd76239a8a743a290dba] [Ver:13a054cf58402ebb44182403cfe05038] [Sig:15853610410799954909] +(I) [19:33:18.997] [000010680]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\data.sga 22871903 B [ID:91eb1b764829dce596439b0b53d5d902] [Ver:aba524cfec6d5b3d14812d950d294d44] [Sig:7933954907331426874] +(I) [19:33:19.017] [000010680]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\art.sga 3641933888 B [ID:335f6c45d2d00556a1b300110fb67f63] [Ver:d9dba04c524949cb9e9ff9555e756601] [Sig:6660836011918620638] +(I) [19:33:19.042] [000010680]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\artbuildings.sga 1611227763 B [ID:e630934e80bb0be959ddfc54da7e1e54] [Ver:c59e3f7fb56de91dbf66dab3dfc50d06] [Sig:10873428813784370760] +(I) [19:33:19.065] [000010680]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\artenvironment.sga 2111293604 B [ID:a8353aa1bdde46ced0f67029944c406c] [Ver:866fae38d40a59ded1ca098bf5b4b081] [Sig:13885138885561321702] +(I) [19:33:19.080] [000010680]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\artscenarios.sga 2983004081 B [ID:ffdeb91fab5122cf1ab7c37d119dc5d5] [Ver:b5f02069e032162bcf743bc621c731fd] [Sig:13040434594592207785] +(I) [19:33:19.093] [000010680]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\scenarios.sga 11054312 B [ID:4f6bed42a792fb5b9eae14472a7e901c] [Ver:69fa57ff0012843c55f23eb040a6e02b] [Sig:3832209442905318666] +(I) [19:33:19.099] [000010680]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\scenariosmp.sga 551899439 B [ID:709197811710287335bf21d3f3e018fe] [Ver:07605cabd2e148c3b7bbed70a81f5750] [Sig:3926167057041245161] +(I) [19:33:19.106] [000010680]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\scenariossp.sga 1782472601 B [ID:cb1eb03a442e23d7da269decdebfe11b] [Ver:60600e84309058b177ac014a5ff8162a] [Sig:1003042867983300798] +(I) [19:33:19.114] [000010680]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\ui.sga 981272195 B [ID:33a67d1cab1e8601f71ae7973f75c08b] [Ver:40ea75e88baaffaefff169fc8c8acfd3] [Sig:15086663737845354599] +(I) [19:33:19.123] [000010680]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\tools\archives\data.sga 2029 B [ID:94195021539650ebc2111161f08a5693] [Ver:fd9902f3003e0e0354394aa79a61a133] [Sig:13413823260693370305] +(I) [19:33:19.123] [000010680]: Archive [DevOnly] is [missing]! [Skipping.] +(I) [19:33:19.123] [000010680]: Archive [DevOnly] is [missing]! [Skipping.] +(I) [19:33:19.123] [000010680]: Archive [ScenariosDev] is [missing]! [Skipping.] +(I) [19:33:19.128] [000010680]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\localefrench.sga 853155 B [ID:11902a9015b2b64dbc05d7d28aa60ed1] [Ver:5e51976741b9308d6b7bf0b4fc0f557e] [Sig:10604888670939368510] +(I) [19:33:19.133] [000010680]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\movies.sga 53841 B [ID:34a3a1146f0574f5dc457975826e2333] [Ver:e7ca9ae4970695598679ed054c53c46f] [Sig:2931587433704792017] +(I) [19:33:19.139] [000010680]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\engine\archives\reflect.sga 1735952 B [ID:cf317ce4d037d959d1f61ec4ba4b95da] [Ver:00f1447fee77dab77b92de0fc7850d76] [Sig:7070158052410442678] +(I) [19:33:19.143] [000010680]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\engine\archives\dx12shadersandedfs.sga 45213 B [ID:f5a37cc293ebf676913da1bdd46d163b] [Ver:5aa66687f8bfb3aeb12d74f1a1bfecb2] [Sig:11297108563025375450] +(I) [19:33:19.148] [000010680]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\engine\archives\dx12assets.sga 7852637 B [ID:6dee0a72320066df084864e3fd8db247] [Ver:b5199b08c33346f4156215f12b155586] [Sig:1424078468205146338] +(I) [19:33:19.154] [000010680]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\common\archives\dx12shadersandedfs.sga 4364748 B [ID:bcff99d52833fd8459ed8d990c584b6d] [Ver:30b026a80a47e510da777debef15e57d] [Sig:16191790684321451989] +(I) [19:33:19.160] [000010680]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\common\archives\dx12assets.sga 1233892 B [ID:2916e14abbb8c29a770cabc48186eae9] [Ver:904fea0e86224b0a27774a9adee1ee6a] [Sig:202420786684442498] +(I) [19:33:19.165] [000010680]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\dx12shadersandedfs.sga 13306449 B [ID:17b342a4951806a6286037aad597bfb4] [Ver:9f9f587aa570e9147796a36fe02873cc] [Sig:4764293413785222189] +(I) [19:33:19.165] [000010680]: Loading step: [Localization] +(I) [19:33:19.183] [000010680]: Loading step: [Game] +(I) [19:33:19.183] [000010680]: Loading step: [SimStaticApp] +(I) [19:33:19.184] [000010680]: Loading step: [Family Manager] +(I) [19:33:19.192] [000010680]: UTIL -- Throwing 'Unable to open file' exception on 'Attrib:Attrib\frontend_lockout.rgd' +(I) [19:33:19.193] [000010680]: UTIL -- Failed to Load BinaryConfig file: 'Attrib:Attrib\frontend_lockout.rgd', error: 'Unable to open file!' +(I) [19:33:19.194] [000010680]: Loading step: [SimApp] +(I) [19:33:19.194] [000010680]: Loading step: [Property Bag Registration] +(I) [19:33:19.198] [000010680]: Loading step: [State Tree Manager] +(I) [19:33:19.380] [000010680]: Loading step: [Sound - Rtpc Event Database Init] +(I) [19:33:19.380] [000010680]: Loading step: [Property Bag Manager] +(I) [19:33:19.770] [000010680]: MapGen - Failed to load: m_defaultCampaignPlayerStartMarker != nullptrFailed loading an attribute data field for map generation. It is likely that your attribute data is out of sync with your local build or build from the build launcher. +(I) [19:33:19.770] [000010680]: MapGen - Failed to load: m_defaultMultiplayerPlayerStartMarker != nullptrFailed loading an attribute data field for map generation. It is likely that your attribute data is out of sync with your local build or build from the build launcher. +(I) [19:33:19.770] [000010680]: MapGen - Failed to load: m_defaultOtherPlayerStartMarker != nullptrFailed loading an attribute data field for map generation. It is likely that your attribute data is out of sync with your local build or build from the build launcher. +(I) [19:33:22.755] [000010680]: PropertyBagManager Loaded in 3.376000s +(I) [19:33:22.755] [000010680]: Loading step: [Modifier Callbacks Initialize] +(I) [19:33:22.755] [000010680]: Loading step: [HandleIndex Manager] +(I) [19:33:22.755] [000010680]: Loading step: [EntityBlueprintManager] +(I) [19:33:22.756] [000010680]: Loading step: [ReflectPostExternalSystemsInited] +(I) [19:33:22.764] [000010680]: Loading step: [ModPackManager] +(I) [19:33:22.765] [000010680]: Loading step: [ModDllSetup] +(I) [19:33:22.765] [000010680]: Loading step: [FilePath Filter] +(I) [19:33:22.765] [000010680]: Loading step: [Locale System] +(I) [19:33:22.765] [000010680]: Loading step: [Compatible Architecture Check] +(I) [19:33:22.765] [000010680]: Loading step: [Compatible OS Check] +(I) [19:33:22.765] [000010680]: Loading step: [Multicore Check] +(I) [19:33:22.765] [000010680]: Loading step: [Parental Control] +(I) [19:33:22.769] [000010680]: Loading step: [NetworkGlobal] +(I) [19:33:22.770] [000010680]: AppID: 1677280 +(I) [19:33:22.771] [000010680]: WorldwideLoginService::WorldwideLoginService - initializing +(I) [19:33:22.773] [000010680]: SystemCertsWin: Opened the CA system store. +(I) [19:33:22.773] [000010680]: WindowsCertificates: Adding certificate; subject=/C=US/ST=California/L=Irvine/O=Blizzard Entertainment/OU=Battle.net/CN=Blizzard Battle.net Local Cert issuer=/C=US/ST=California/L=Irvine/O=Blizzard Entertainment/OU=Battle.net/CN=Blizzard Battle.net Local Cert +(I) [19:33:22.773] [000010680]: WindowsCertificates: Adding certificate; subject=/DC=com/DC=microsoft/CN=Microsoft Root Certificate Authority issuer=/DC=com/DC=microsoft/CN=Microsoft Root Certificate Authority +(I) [19:33:22.773] [000010680]: WindowsCertificates: Adding certificate; subject=/C=ZA/ST=Western Cape/L=Durbanville/O=Thawte/OU=Thawte Certification/CN=Thawte Timestamping CA issuer=/C=ZA/ST=Western Cape/L=Durbanville/O=Thawte/OU=Thawte Certification/CN=Thawte Timestamping CA +(I) [19:33:22.773] [000010680]: WindowsCertificates: Adding certificate; subject=/OU=Copyright (c) 1997 Microsoft Corp./OU=Microsoft Corporation/CN=Microsoft Root Authority issuer=/OU=Copyright (c) 1997 Microsoft Corp./OU=Microsoft Corporation/CN=Microsoft Root Authority +(I) [19:33:22.773] [000010680]: WindowsCertificates: Adding certificate; subject=/C=US/O=Symantec Corporation/CN=Symantec Enterprise Mobile Root for Microsoft issuer=/C=US/O=Symantec Corporation/CN=Symantec Enterprise Mobile Root for Microsoft +(I) [19:33:22.773] [000010680]: WindowsCertificates: Adding certificate; subject=/C=US/ST=Washington/L=Redmond/O=Microsoft Corporation/CN=Microsoft Root Certificate Authority 2011 issuer=/C=US/ST=Washington/L=Redmond/O=Microsoft Corporation/CN=Microsoft Root Certificate Authority 2011 +(I) [19:33:22.773] [000010680]: WindowsCertificates: Adding certificate; subject=/C=US/O=MSFT/CN=Microsoft Authenticode(tm) Root Authority issuer=/C=US/O=MSFT/CN=Microsoft Authenticode(tm) Root Authority +(I) [19:33:22.773] [000010680]: WindowsCertificates: Adding certificate; subject=/CN=Razer Chroma SDK Local Cert/OU=Chroma/O=Razer Inc issuer=/CN=Razer Chroma SDK Local Cert/OU=Chroma/O=Razer Inc +(I) [19:33:22.773] [000010680]: WindowsCertificates: Adding certificate; subject=/C=US/ST=Washington/L=Redmond/O=Microsoft Corporation/CN=Microsoft Root Certificate Authority 2010 issuer=/C=US/ST=Washington/L=Redmond/O=Microsoft Corporation/CN=Microsoft Root Certificate Authority 2010 +(I) [19:33:22.774] [000010680]: WindowsCertificates: Adding certificate; subject=/C=US/ST=Washington/L=Redmond/O=Microsoft Corporation/CN=Microsoft ECC TS Root Certificate Authority 2018 issuer=/C=US/ST=Washington/L=Redmond/O=Microsoft Corporation/CN=Microsoft ECC TS Root Certificate Authority 2018 +(I) [19:33:22.774] [000010680]: WindowsCertificates: Adding certificate; subject=/O=Microsoft Trust Network/OU=Microsoft Corporation/OU=Microsoft Time Stamping Service Root/OU=Copyright (c) 1997 Microsoft Corp. issuer=/O=Microsoft Trust Network/OU=Microsoft Corporation/OU=Microsoft Time Stamping Service Root/OU=Copyright (c) 1997 Microsoft Corp. +(I) [19:33:22.774] [000010680]: WindowsCertificates: Adding certificate; subject=/O=VeriSign Trust Network/OU=VeriSign, Inc./OU=VeriSign Time Stamping Service Root/OU=NO LIABILITY ACCEPTED, (c)97 VeriSign, Inc. issuer=/O=VeriSign Trust Network/OU=VeriSign, Inc./OU=VeriSign Time Stamping Service Root/OU=NO LIABILITY ACCEPTED, (c)97 VeriSign, Inc. +(I) [19:33:22.774] [000010680]: WindowsCertificates: Adding certificate; subject=/C=US/ST=Washington/L=Redmond/O=Microsoft Corporation/CN=Microsoft ECC Product Root Certificate Authority 2018 issuer=/C=US/ST=Washington/L=Redmond/O=Microsoft Corporation/CN=Microsoft ECC Product Root Certificate Authority 2018 +(I) [19:33:22.774] [000010680]: WindowsCertificates: Adding certificate; subject=/C=US/ST=Washington/L=Redmond/O=Microsoft Corporation/CN=Microsoft Time Stamp Root Certificate Authority 2014 issuer=/C=US/ST=Washington/L=Redmond/O=Microsoft Corporation/CN=Microsoft Time Stamp Root Certificate Authority 2014 +(I) [19:33:22.774] [000010680]: WindowsCertificates: Adding certificate; subject=/C=IT/L=Milan/O=Actalis S.p.A./03358520967/CN=Actalis Authentication Root CA issuer=/C=IT/L=Milan/O=Actalis S.p.A./03358520967/CN=Actalis Authentication Root CA +(I) [19:33:22.774] [000010680]: WindowsCertificates: Adding certificate; subject=/C=US/ST=UT/L=Salt Lake City/O=The USERTRUST Network/OU=http://www.usertrust.com/CN=UTN-USERFirst-Object issuer=/C=US/ST=UT/L=Salt Lake City/O=The USERTRUST Network/OU=http://www.usertrust.com/CN=UTN-USERFirst-Object +(I) [19:33:22.774] [000010680]: WindowsCertificates: Adding certificate; subject=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert Global Root G2 issuer=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert Global Root G2 +(I) [19:33:22.774] [000010680]: WindowsCertificates: Adding certificate; subject=/C=BM/O=QuoVadis Limited/OU=Root Certification Authority/CN=QuoVadis Root Certification Authority issuer=/C=BM/O=QuoVadis Limited/OU=Root Certification Authority/CN=QuoVadis Root Certification Authority +(I) [19:33:22.774] [000010680]: WindowsCertificates: Adding certificate; subject=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert Trusted Root G4 issuer=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert Trusted Root G4 +(I) [19:33:22.774] [000010680]: WindowsCertificates: Adding certificate; subject=/O=Digital Signature Trust Co./CN=DST Root CA X3 issuer=/O=Digital Signature Trust Co./CN=DST Root CA X3 +(I) [19:33:22.774] [000010680]: WindowsCertificates: Adding certificate; subject=/OU=GlobalSign Root CA - R3/O=GlobalSign/CN=GlobalSign issuer=/OU=GlobalSign Root CA - R3/O=GlobalSign/CN=GlobalSign +(I) [19:33:22.774] [000010680]: WindowsCertificates: Adding certificate; subject=/C=IE/O=Baltimore/OU=CyberTrust/CN=Baltimore CyberTrust Root issuer=/C=IE/O=Baltimore/OU=CyberTrust/CN=Baltimore CyberTrust Root +(I) [19:33:22.774] [000010680]: WindowsCertificates: Adding certificate; subject=/C=US/O=Equifax/OU=Equifax Secure Certificate Authority issuer=/C=US/O=Equifax/OU=Equifax Secure Certificate Authority +(I) [19:33:22.774] [000010680]: WindowsCertificates: Adding certificate; subject=/C=GB/ST=Greater Manchester/L=Salford/O=Comodo CA Limited/CN=AAA Certificate Services issuer=/C=GB/ST=Greater Manchester/L=Salford/O=Comodo CA Limited/CN=AAA Certificate Services +(I) [19:33:22.774] [000010680]: WindowsCertificates: Adding certificate; subject=/C=US/O=Internet Security Research Group/CN=ISRG Root X1 issuer=/C=US/O=Internet Security Research Group/CN=ISRG Root X1 +(I) [19:33:22.775] [000010680]: WindowsCertificates: Adding certificate; subject=/C=CN/O=WoSign CA Limited/CN=Certification Authority of WoSign issuer=/C=CN/O=WoSign CA Limited/CN=Certification Authority of WoSign +(I) [19:33:22.775] [000010680]: WindowsCertificates: Adding certificate; subject=/C=US/ST=Arizona/L=Scottsdale/O=Starfield Technologies, Inc./CN=Starfield Root Certificate Authority - G2 issuer=/C=US/ST=Arizona/L=Scottsdale/O=Starfield Technologies, Inc./CN=Starfield Root Certificate Authority - G2 +(I) [19:33:22.775] [000010680]: WindowsCertificates: Adding certificate; subject=/C=US/O=Entrust, Inc./OU=www.entrust.net/CPS is incorporated by reference/OU=(c) 2006 Entrust, Inc./CN=Entrust Root Certification Authority issuer=/C=US/O=Entrust, Inc./OU=www.entrust.net/CPS is incorporated by reference/OU=(c) 2006 Entrust, Inc./CN=Entrust Root Certification Authority +(I) [19:33:22.775] [000010680]: WindowsCertificates: Adding certificate; subject=/C=BE/O=GlobalSign nv-sa/OU=Root CA/CN=GlobalSign Root CA issuer=/C=BE/O=GlobalSign nv-sa/OU=Root CA/CN=GlobalSign Root CA +(I) [19:33:22.775] [000010680]: WindowsCertificates: Adding certificate; subject=/C=FR/O=Dhimyotis/CN=Certigna issuer=/C=FR/O=Dhimyotis/CN=Certigna +(I) [19:33:22.775] [000010680]: WindowsCertificates: Adding certificate; subject=/C=GB/ST=Greater Manchester/L=Salford/O=COMODO CA Limited/CN=COMODO RSA Certification Authority issuer=/C=GB/ST=Greater Manchester/L=Salford/O=COMODO CA Limited/CN=COMODO RSA Certification Authority +(I) [19:33:22.775] [000010680]: WindowsCertificates: Adding certificate; subject=/C=US/O=Starfield Technologies, Inc./OU=Starfield Class 2 Certification Authority issuer=/C=US/O=Starfield Technologies, Inc./OU=Starfield Class 2 Certification Authority +(I) [19:33:22.775] [000010680]: WindowsCertificates: Adding certificate; subject=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert Global Root CA issuer=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert Global Root CA +(I) [19:33:22.775] [000010680]: WindowsCertificates: Adding certificate; subject=/C=US/O=Entrust, Inc./OU=See www.entrust.net/legal-terms/OU=(c) 2009 Entrust, Inc. - for authorized use only/CN=Entrust Root Certification Authority - G2 issuer=/C=US/O=Entrust, Inc./OU=See www.entrust.net/legal-terms/OU=(c) 2009 Entrust, Inc. - for authorized use only/CN=Entrust Root Certification Authority - G2 +(I) [19:33:22.775] [000010680]: WindowsCertificates: Adding certificate; subject=/C=US/O=SecureTrust Corporation/CN=SecureTrust CA issuer=/C=US/O=SecureTrust Corporation/CN=SecureTrust CA +(I) [19:33:22.775] [000010680]: WindowsCertificates: Adding certificate; subject=/OU=GlobalSign Root CA - R6/O=GlobalSign/CN=GlobalSign issuer=/OU=GlobalSign Root CA - R6/O=GlobalSign/CN=GlobalSign +(I) [19:33:22.775] [000010680]: WindowsCertificates: Adding certificate; subject=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert Global Root G3 issuer=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert Global Root G3 +(I) [19:33:22.775] [000010680]: WindowsCertificates: Adding certificate; subject=/OU=GlobalSign Root CA - R2/O=GlobalSign/CN=GlobalSign issuer=/OU=GlobalSign Root CA - R2/O=GlobalSign/CN=GlobalSign +(I) [19:33:22.775] [000010680]: WindowsCertificates: Adding certificate; subject=/C=US/ST=Texas/L=Houston/O=SSL Corporation/CN=SSL.com EV Root Certification Authority RSA R2 issuer=/C=US/ST=Texas/L=Houston/O=SSL Corporation/CN=SSL.com EV Root Certification Authority RSA R2 +(I) [19:33:22.775] [000010680]: WindowsCertificates: Adding certificate; subject=/C=US/O=VeriSign, Inc./OU=Class 3 Public Primary Certification Authority issuer=/C=US/O=VeriSign, Inc./OU=Class 3 Public Primary Certification Authority +(I) [19:33:22.775] [000010680]: WindowsCertificates: Adding certificate; subject=/C=PL/O=Unizeto Sp. z o.o./CN=Certum CA issuer=/C=PL/O=Unizeto Sp. z o.o./CN=Certum CA +(I) [19:33:22.775] [000010680]: WindowsCertificates: Adding certificate; subject=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert High Assurance EV Root CA issuer=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert High Assurance EV Root CA +(I) [19:33:22.775] [000010680]: WindowsCertificates: Adding certificate; subject=/C=JP/O=SECOM Trust Systems CO.,LTD./OU=Security Communication RootCA2 issuer=/C=JP/O=SECOM Trust Systems CO.,LTD./OU=Security Communication RootCA2 +(I) [19:33:22.775] [000010680]: WindowsCertificates: Adding certificate; subject=/C=US/O=DigiCert, Inc./CN=DigiCert CS RSA4096 Root G5 issuer=/C=US/O=DigiCert, Inc./CN=DigiCert CS RSA4096 Root G5 +(I) [19:33:22.775] [000010680]: WindowsCertificates: Adding certificate; subject=/C=US/O=WFA Hotspot 2.0/CN=Hotspot 2.0 Trust Root CA - 03 issuer=/C=US/O=WFA Hotspot 2.0/CN=Hotspot 2.0 Trust Root CA - 03 +(I) [19:33:22.775] [000010680]: WindowsCertificates: Adding certificate; subject=/O=Entrust.net/OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.)/OU=(c) 1999 Entrust.net Limited/CN=Entrust.net Certification Authority (2048) issuer=/O=Entrust.net/OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.)/OU=(c) 1999 Entrust.net Limited/CN=Entrust.net Certification Authority (2048) +(I) [19:33:22.775] [000010680]: WindowsCertificates: Adding certificate; subject=/C=BE/O=GlobalSign nv-sa/CN=GlobalSign Code Signing Root R45 issuer=/C=BE/O=GlobalSign nv-sa/CN=GlobalSign Code Signing Root R45 +(I) [19:33:22.775] [000010680]: WindowsCertificates: Adding certificate; subject=/C=US/O=VeriSign, Inc./OU=VeriSign Trust Network/OU=(c) 2006 VeriSign, Inc. - For authorized use only/CN=VeriSign Class 3 Public Primary Certification Authority - G5 issuer=/C=US/O=VeriSign, Inc./OU=VeriSign Trust Network/OU=(c) 2006 VeriSign, Inc. - For authorized use only/CN=VeriSign Class 3 Public Primary Certification Authority - G5 +(I) [19:33:22.776] [000010680]: WindowsCertificates: Adding certificate; subject=/C=US/ST=Arizona/L=Scottsdale/O=GoDaddy.com, Inc./CN=Go Daddy Root Certificate Authority - G2 issuer=/C=US/ST=Arizona/L=Scottsdale/O=GoDaddy.com, Inc./CN=Go Daddy Root Certificate Authority - G2 +(I) [19:33:22.776] [000010680]: WindowsCertificates: Adding certificate; subject=/C=IL/O=StartCom Ltd./OU=Secure Digital Certificate Signing/CN=StartCom Certification Authority issuer=/C=IL/O=StartCom Ltd./OU=Secure Digital Certificate Signing/CN=StartCom Certification Authority +(I) [19:33:22.776] [000010680]: WindowsCertificates: Adding certificate; subject=/C=JP/O=SECOM Trust.net/OU=Security Communication RootCA1 issuer=/C=JP/O=SECOM Trust.net/OU=Security Communication RootCA1 +(I) [19:33:22.776] [000010680]: WindowsCertificates: Adding certificate; subject=/C=US/O=VeriSign, Inc./OU=VeriSign Trust Network/OU=(c) 2008 VeriSign, Inc. - For authorized use only/CN=VeriSign Universal Root Certification Authority issuer=/C=US/O=VeriSign, Inc./OU=VeriSign Trust Network/OU=(c) 2008 VeriSign, Inc. - For authorized use only/CN=VeriSign Universal Root Certification Authority +(I) [19:33:22.776] [000010680]: WindowsCertificates: Adding certificate; subject=/C=FR/O=Dhimyotis/OU=0002 48146308100036/CN=Certigna Root CA issuer=/C=FR/O=Dhimyotis/OU=0002 48146308100036/CN=Certigna Root CA +(I) [19:33:22.776] [000010680]: WindowsCertificates: Adding certificate; subject=/C=US/ST=New Jersey/L=Jersey City/O=The USERTRUST Network/CN=USERTrust RSA Certification Authority issuer=/C=US/ST=New Jersey/L=Jersey City/O=The USERTRUST Network/CN=USERTrust RSA Certification Authority +(I) [19:33:22.776] [000010680]: WindowsCertificates: Adding certificate; subject=/C=US/O=Google Trust Services LLC/CN=GTS Root R4 issuer=/C=US/O=Google Trust Services LLC/CN=GTS Root R4 +(I) [19:33:22.776] [000010680]: WindowsCertificates: Adding certificate; subject=/C=US/O=The Go Daddy Group, Inc./OU=Go Daddy Class 2 Certification Authority issuer=/C=US/O=The Go Daddy Group, Inc./OU=Go Daddy Class 2 Certification Authority +(I) [19:33:22.776] [000010680]: WindowsCertificates: Adding certificate; subject=/C=US/O=Entrust, Inc./OU=See www.entrust.net/legal-terms/OU=(c) 2012 Entrust, Inc. - for authorized use only/CN=Entrust Root Certification Authority - EC1 issuer=/C=US/O=Entrust, Inc./OU=See www.entrust.net/legal-terms/OU=(c) 2012 Entrust, Inc. - for authorized use only/CN=Entrust Root Certification Authority - EC1 +(I) [19:33:22.776] [000010680]: WindowsCertificates: Adding certificate; subject=/OU=GlobalSign ECC Root CA - R5/O=GlobalSign/CN=GlobalSign issuer=/OU=GlobalSign ECC Root CA - R5/O=GlobalSign/CN=GlobalSign +(I) [19:33:22.776] [000010680]: WindowsCertificates: Adding certificate; subject=/C=BM/O=QuoVadis Limited/CN=QuoVadis Root CA 2 G3 issuer=/C=BM/O=QuoVadis Limited/CN=QuoVadis Root CA 2 G3 +(I) [19:33:22.776] [000010680]: WindowsCertificates: Adding certificate; subject=/C=PL/O=Unizeto Technologies S.A./OU=Certum Certification Authority/CN=Certum Trusted Network CA issuer=/C=PL/O=Unizeto Technologies S.A./OU=Certum Certification Authority/CN=Certum Trusted Network CA +(I) [19:33:22.776] [000010680]: WindowsCertificates: Adding certificate; subject=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert Assured ID Root CA issuer=/C=US/O=DigiCert Inc/OU=www.digicert.com/CN=DigiCert Assured ID Root CA +(I) [19:33:22.776] [000010680]: WindowsCertificates: Adding certificate; subject=/C=SE/O=AddTrust AB/OU=AddTrust External TTP Network/CN=AddTrust External CA Root issuer=/C=SE/O=AddTrust AB/OU=AddTrust External TTP Network/CN=AddTrust External CA Root +(I) [19:33:22.776] [000010680]: SystemCertsWin: 62 certificates loaded +(I) [19:33:22.805] [000010680]: AutomatchInternal: Instantiating +(I) [19:33:22.816] [000010680]: NetworkLoadCallback not able to open file CloudGetFileURLCache-coh3-coh3.dat +(I) [19:33:22.816] [000010680]: NetworkLoadCallback not able to open file CloudFileMetadataCache-coh3-coh3.dat +(I) [19:33:22.816] [000010680]: WindowsCertificates: Adding certificate; subject=/C=CA/ST=British Columbia/L=Vancouver/O=Relic Entertainment/CN=RelicLink Root CA issuer=/C=CA/ST=British Columbia/L=Vancouver/O=Relic Entertainment/CN=RelicLink Root CA +(I) [19:33:22.816] [000010680]: Original Server Settings before command line args: server=coh3, title=coh3 +(I) [19:33:22.816] [000010680]: Applied Server Settings after command line args: liveServer=coh3, devServer=coh3, certServer=coh3, title=coh3 +(I) [19:33:22.817] [000010680]: Loading step: [Telemetry] +(I) [19:33:22.817] [000010680]: Loading step: [Lua Libraries] +(I) [19:33:22.817] [000010680]: Loading step: [Lua Tools] +(I) [19:33:22.817] [000010680]: Loading step: [System Tests] +(I) [19:33:22.820] [000010680]: Enumerating Graphics Adapters +(I) [19:33:22.820] [000010680]: Choosing first adapter +(I) [19:33:22.820] [000010680]: Adapter: NVIDIA GeForce RTX 3090 Ti video dedicated: 25508708352 shared: 17136746496 system dedicated: 0 +(I) [19:33:22.820] [000010680]: Checking against Adapter: Microsoft Basic Render Driver video dedicated: 0 shared: 17136746496 system dedicated: 0 +(I) [19:33:23.144] [000010680]: Adapter ignored, we already have a good dedicated, and this one doesn't have better dedicated memory +(I) [19:33:23.144] [000010680]: Chosen adapter: NVIDIA GeForce RTX 3090 Ti video dedicated: 25508708352 shared: 17136746496 system dedicated: 0 +(I) [19:33:23.144] [000010680]: Loading step: [Command DB] +(I) [19:33:23.162] [000010680]: Loading step: [Game Command DB] +(I) [19:33:23.162] [000010680]: Loading step: [InitComponentFactory] +(I) [19:33:23.162] [000010680]: Loading step: [Inventory] +(I) [19:33:23.162] [000010680]: Loading step: [AI subsystem] +(I) [19:33:23.162] [000010680]: Loading step: [Game Hooks] +(I) [19:33:23.162] [000010680]: RPC -- Initializing RpcFramework +(I) [19:33:23.162] [000010680]: Loading step: [Game Modules Init] +(I) [19:33:23.163] [000010680]: Loading step: [App Init Complete] +(I) [19:33:23.163] [000010680]: Loading step: [dbImGui] +(I) [19:33:23.163] [000010680]: Loading step: [Havok] +(I) [19:33:23.218] [000010680]: Loading step: [User Data Shutdown] +(I) [19:33:23.218] [000006648]: Registered essence thread: [Simulation_Thread] usesRcssWorkerThreads: [true] +(I) [19:33:23.219] [000019272]: Registered essence thread: [Render_Thread] usesRcssWorkerThreads: [true] +(I) [19:33:23.220] [000010680]: NvAPI initialized with reported interface version: NVidia Complete Version 1.10 +(I) [19:33:23.220] [000010680]: NvAPI initialization reports installed display driver version: r545_00 +(I) [19:33:23.459] [000010680]: Enumerating Graphics Adapters +(I) [19:33:23.459] [000010680]: Choosing first adapter +(I) [19:33:23.459] [000010680]: Adapter: NVIDIA GeForce RTX 3090 Ti video dedicated: 25508708352 shared: 17136746496 system dedicated: 0 +(I) [19:33:23.459] [000010680]: Checking against Adapter: Microsoft Basic Render Driver video dedicated: 0 shared: 17136746496 system dedicated: 0 +(I) [19:33:23.672] [000010680]: Adapter ignored, we already have a good dedicated, and this one doesn't have better dedicated memory +(I) [19:33:23.672] [000010680]: Chosen adapter: NVIDIA GeForce RTX 3090 Ti video dedicated: 25508708352 shared: 17136746496 system dedicated: 0 +(I) [19:33:23.850] [000010680]: RR Feature Level is SM6_2 +(I) [19:33:23.885] [000010680]: -------- GPU and Output INFO -------- +(I) [19:33:23.885] [000010680]: NVIDIA GeForce RTX 3090 Ti -- 24327MB dedicated video memory, 0MB dedicated system memory and 16342MB shared system memory available. +(I) [19:33:23.885] [000010680]: Primary Output Device is \\.\DISPLAY1, Resolution is 2560x1440 +(I) [19:33:23.886] [000010680]: Microsoft Basic Render Driver -- 0MB dedicated video memory, 0MB dedicated system memory and 16342MB shared system memory available. +(I) [19:33:24.705] [000010680]: Loading step: [Render Anim] +(I) [19:33:24.705] [000010680]: Loading step: [Alias] +(I) [19:33:24.706] [000010680]: Loading step: [Hotswapping] +(I) [19:33:24.706] [000010680]: Loading step: [ITextureUtil] +(I) [19:33:24.706] [000010680]: Loading step: [TextureManager] +(I) [19:33:24.706] [000010680]: Loading step: [Loaders] +(I) [19:33:24.706] [000010680]: Loading step: [ActionCommandFunction] +(I) [19:33:24.706] [000010680]: Loading step: [TeamColourCommandFunction] +(I) [19:33:24.706] [000010680]: Loading step: [SetShaderVariableCommandFunction] +(I) [19:33:24.706] [000010680]: Loading step: [IntersectUtil] +(I) [19:33:24.706] [000010680]: Loading step: [ShadowManager] +(I) [19:33:24.706] [000010680]: Loading step: [Debug Render] +(I) [19:33:24.706] [000010680]: Loading step: [Autodetect Settings] +(I) [19:33:24.706] [000010680]: -------- Display Adapter Driver Information -------- +(I) [19:33:24.706] [000010680]: Vendor: NVIDIA (0x10de) +(I) [19:33:24.706] [000010680]: Installed Driver Version: r545_00 (54633) +(I) [19:33:24.706] [000010680]: Required Driver Version: 512.15 (51215) +(I) [19:33:24.706] [000010680]: ---------------------------------------------------- +(I) [19:33:26.127] [000010680]: Results of 8 GPU performance test frames: Median = 13.160959ms, average = 13.202688ms, min = 12.989440ms, max = 13.641728ms +(I) [19:33:26.129] [000010680]: Detected: CPU [Max][Score: 819.87][RAM: 32], GPU [Max][Score: 300.24][VRAM: 24] +(I) [19:33:26.134] [000010680]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\soundcommon.sga 13907 B [ID:70641d3636c52218e9ecf2aba8a04c76] [Ver:6ce6f847b872a13b2607b00732f917f6] [Sig:12479356171490108550] +(I) [19:33:26.140] [000010680]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\soundspeechallies.sga 225891908 B [ID:a3d79f90e4bdec5cb47a67abda5a2793] [Ver:b95949b3ad86404dd9e507400e47c55c] [Sig:7176493672085207988] +(I) [19:33:26.150] [000010680]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\soundspeechalliesuk.sga 1641388214 B [ID:ed506ab18d21f2ffe3194169ba1d9a3c] [Ver:e182d4f2746628c519bd7a560e177efd] [Sig:16733140244779250900] +(I) [19:33:26.169] [000010680]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\soundspeechalliesus.sga 987745819 B [ID:7a1866d3e9d2d1e3cd91cf5ac53deaa9] [Ver:df1339dfe6c8ce82b873166e1b635557] [Sig:8178343946498814655] +(I) [19:33:26.183] [000010680]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\soundspeechaxis.sga 798933411 B [ID:44d5e1d8695f153cc8d01842ce4013df] [Ver:c48b9d05badb8218bd47208dc7f2d4ca] [Sig:7177455968363307143] +(I) [19:33:26.196] [000010680]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\soundspeechaxisdak.sga 957509857 B [ID:7c9beb5bbe4c6377f9af4992656de107] [Ver:310ca6356650cfc2cede31dac5538a5b] [Sig:1308138538130272606] +(I) [19:33:26.210] [000010680]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\soundspeechaxiswehr.sga 1154234810 B [ID:86c53ff39ed7cba5c213d242f3da1e68] [Ver:66e6870b96609bde60c5400008e3b0e9] [Sig:3237122929350076478] +(I) [19:33:26.224] [000010680]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\soundspeechcampaign.sga 1045369919 B [ID:622fb949ed9a0aec199fafdfb5e30bb7] [Ver:5875f8c0808291ac54a172ee3b68e6b6] [Sig:4506384843269190941] +(I) [19:33:26.233] [000010680]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\anvil\archives\soundhigh.sga 973453032 B [ID:95a11ec6fbb00f11e9eef24ff8ae22e5] [Ver:c0c25d61721f21c1fdecdb51e84eff6c] [Sig:11089065236804819891] +(I) [19:33:26.237] [000010680]: ARC -- c:\program files (x86)\steam\steamapps\common\company of heroes 3\engine\archives\arthigh.sga 6678 B [ID:e8f87e4ac202807565d2b4980453804d] [Ver:2687154863f6a8aae64a123d657f5735] [Sig:6704931815395175266] +(I) [19:33:26.237] [000010680]: Loading step: [Sound] +(I) [19:33:27.537] [000010680]: Loading step: [Fonts] +(I) [19:33:27.538] [000010680]: Loading step: [Statgraph] +(I) [19:33:27.538] [000010680]: Loading step: [Debug Console] +(I) [19:33:27.539] [000010680]: Loading step: [Movie Manager] +(I) [19:33:27.539] [000010680]: Loading step: [Flush Inventory] +(I) [19:33:27.539] [000010680]: Loading step: [Purge BackgroundLoader] +(I) [19:33:27.539] [000010680]: Loading step: [Unload inventory] +(I) [19:33:27.539] [000010680]: Loading step: [Cancel Pending Soundbank Loads] +(I) [19:33:27.791] [000010680]: Loading step: [Init Screen Background] +(I) [19:33:27.791] [000010680]: Loading step: [Cursor] +(I) [19:33:27.876] [000010680]: Loading step: [Presentation App] +(I) [19:33:27.876] [000010680]: Loading step: [Presentation Static App] +(I) [19:33:27.876] [000010680]: Loading step: [DestinationFormationManager] +(I) [19:33:27.877] [000010680]: Loading step: [Campaign Manager] +(I) [19:33:27.877] [000010680]: Loading step: [Mods] +(I) [19:33:27.883] [000010680]: ARC -- C:\Users\Cutil\Documents\My Games\Company of Heroes 3\mods\extension\subscriptions\2937361544\ccm.sga 374107 B [ID:385d981096ba4ece90408281db65174e] [Ver:4d4d39c656149004ee556defd90c4aeb] [Sig:0] +(I) [19:33:27.888] [000010680]: ARC -- C:\Users\Cutil\Documents\My Games\Company of Heroes 3\mods\extension\subscriptions\2937817031\CameraMod.sga 24794 B [ID:eb7ff9b03e6746d1ad875c105cb32558] [Ver:c9116bde6e8e314221ce3a5194d04802] [Sig:0] +(I) [19:33:27.894] [000010680]: ARC -- C:\Users\Cutil\Documents\My Games\Company of Heroes 3\mods\extension\subscriptions\2939650220\Tunisian_Pass.sga 8223159 B [ID:74bac07e339342b1bfc2c0a712a244c0] [Ver:92dfb7054f1a4a97fcad76e61b4947ab] [Sig:0] +(I) [19:33:27.899] [000010680]: ARC -- C:\Users\Cutil\Documents\My Games\Company of Heroes 3\mods\extension\subscriptions\2940153801\2_Crossroads.sga 4218946 B [ID:098a5aad6c714469a3a26c3b52f30922] [Ver:e5186367b15f8b43a87817b5a307c927] [Sig:0] +(I) [19:33:27.904] [000010680]: ARC -- C:\Users\Cutil\Documents\My Games\Company of Heroes 3\mods\extension\subscriptions\2961426505\Faymonville_ML.sga 8394864 B [ID:80ccc23d5687493a9fbac8dc81cf1022] [Ver:c565ad4906a6dd0615b5ae5076a00ac6] [Sig:0] +(I) [19:33:27.909] [000010680]: ARC -- C:\Users\Cutil\Documents\My Games\Company of Heroes 3\mods\extension\subscriptions\2972576904\twin_beach_2p_mkii.sga 7010009 B [ID:4c42c4d9d6d0474ba3feade1c80553a0] [Ver:1061b65e374d8b51dccb1b3baad963fd] [Sig:0] +(I) [19:33:27.995] [000010680]: GAME -- (WorldManager) Cannot find original scenario "po_valley_4p" referenced from data:scenarios\missions\skirmish\po_valley_sp\po_valley_sp.scenref +(I) [19:33:27.995] [000010680]: GAME -- (WorldManager) Could not load scenario reference file data:scenarios\missions\skirmish\po_valley_sp\po_valley_sp.scenref. Please check syntax. +(I) [19:33:28.005] [000010680]: Loading step: [Item Manager] +(I) [19:33:28.005] [000010680]: Loading step: [Loadout Manager] +(I) [19:33:28.005] [000010680]: Loading step: [Chat Manager] +(I) [19:33:28.007] [000010680]: Loading step: [Squad Command Processor Types] +(I) [19:33:28.007] [000010680]: Loading step: [Squad Command Processor Types from Games] +(I) [19:33:28.007] [000010680]: Loading step: [IEngineInitializable] +(I) [19:33:28.020] [000010680]: default binding was not found for command [focus_next_vehicle] in [TEST]. The command could be deleted. Ignored +(I) [19:33:28.020] [000010680]: default binding was not found for command [focus_next_infantry] in [TEST]. The command could be deleted. Ignored +(I) [19:33:28.020] [000010680]: default binding was not found for command [pick_next_vehicle] in [TEST]. The command could be deleted. Ignored +(I) [19:33:28.020] [000010680]: default binding was not found for command [focus_next_idle_emplacement] in [TEST]. The command could be deleted. Ignored +(I) [19:33:28.020] [000010680]: default binding was not found for command [pick_next_infantry] in [TEST]. The command could be deleted. Ignored +(I) [19:33:28.020] [000010680]: default binding was not found for command [pick_all_emplacements] in [TEST]. The command could be deleted. Ignored +(I) [19:33:28.020] [000010680]: default binding was not found for command [pick_next_emplacement] in [TEST]. The command could be deleted. Ignored +(I) [19:33:28.020] [000010680]: default binding was not found for command [pick_all_idle_emplacements] in [TEST]. The command could be deleted. Ignored +(I) [19:33:28.020] [000010680]: default binding was not found for command [pick_next_idle_vehicle] in [TEST]. The command could be deleted. Ignored +(I) [19:33:28.020] [000010680]: default binding was not found for command [focus_next_emplacement] in [TEST]. The command could be deleted. Ignored +(I) [19:33:28.020] [000010680]: default binding was not found for command [pick_next_idle_emplacement] in [TEST]. The command could be deleted. Ignored +(I) [19:33:28.020] [000010680]: default binding was not found for command [pick_all_on_screen] in [TEST]. The command could be deleted. Ignored +(I) [19:33:28.020] [000010680]: default binding was not found for command [pick_next_idle_infantry] in [TEST]. The command could be deleted. Ignored +(I) [19:33:28.020] [000010680]: default binding was not found for command [focus_next_idle_vehicle] in [TEST]. The command could be deleted. Ignored +(I) [19:33:28.020] [000010680]: default binding was not found for command [focus_next_idle_infantry] in [TEST]. The command could be deleted. Ignored +(I) [19:33:28.020] [000010680]: default binding was not found for command [pick_all] in [TEST]. The command could be deleted. Ignored +(I) [19:33:28.020] [000010680]: Invalid group observer_replay found in profile TEST. Ignoring +(I) [19:33:28.021] [000010680]: default binding was not found for command [zoom] in [TEST]. The command could be deleted. Ignored +(I) [19:33:28.022] [000010680]: CRC & Version Info : exe 0x000054f7:data 0xb8c96154:flags 0 +(I) [19:33:28.027] [000010680]: GameApp::SetState : new (Unloaded) old (Uninitialized) +(I) [19:33:30.962] [000010680]: GameApp::SetState : new (FrontEnd) old (Unloaded) +(I) [19:33:30.962] [000010680]: GameApp::SetTargetState : new (Uninitialized) old (FrontEnd) +(I) [19:33:30.963] [000010680]: FILESYSTEM -- filepath failure, missing alias 'Save:Campaign\*.rlt' +(I) [19:33:30.963] [000010680]: FILESYSTEM -- filepath failure, missing alias 'Save:AutoSave\Campaign\*.rlt' +(I) [19:33:30.963] [000010680]: FILESYSTEM -- filepath failure, missing alias 'Save:Operations\*.sav' +(I) [19:33:30.963] [000010680]: FILESYSTEM -- filepath failure, missing alias 'Save:Skirmish\*.sav' +(I) [19:33:30.963] [000010680]: FILESYSTEM -- filepath failure, missing alias 'peruserdata:datastore/ftue.rlt' +(I) [19:33:30.963] [000010680]: FILESYSTEM -- filepath failure, missing alias 'peruserdata:datastore/ftue.rlt' +(I) [19:33:30.981] [000019272]: RENDERING - Starting compositor fullscreen transition [1] +(I) [19:33:30.981] [000019272]: RENDERING - Setting Fullscreen On +(I) [19:33:31.139] [000019272]: RENDERING - state Size [2560 x 1440], fullscreen size[2560 x 1440] +(I) [19:33:31.144] [000019272]: RENDERING - Finished compositor fullscreen transition [1] +(I) [19:33:31.144] [000019272]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [19:33:31.191] [000019272]: RENDERING - new resize requested [2560, 1440] reason [WindowSizeEvent] +(I) [19:33:31.191] [000019272]: RENDERING - resize request clobbering old request [2560, 1440] reason [WindowSizeEvent] +(I) [19:33:31.191] [000019272]: RENDERING - new resize requested [2560, 1440] reason [DisplayChange] +(I) [19:33:31.191] [000019272]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [DisplayChange] +(I) [19:33:31.194] [000019272]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [DisplayChange] +(I) [19:33:31.194] [000019272]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [19:33:31.196] [000010680]: Requesting ticket +(I) [19:33:31.549] [000010680]: OnRequest app ticket returned N +(I) [19:33:31.549] [000010680]: SteamAuth received ticket at t=5122389 +(I) [19:33:32.632] [000010680]: Found 1 profiles for account /steam/76561198005864560 +(I) [19:33:32.632] [000010680]: Found profile: /steam/76561198005864560 +(I) [19:33:32.634] [000010680]: Client is using WebSockets to receive updates from the server +(I) [19:33:32.636] [000010680]: Login attempt: C00T01R00X-01 52656C69008C +(I) [19:33:32.656] [000015544]: WebSocketConnection::Process: Creating a websocket connection; host=coh3-api.reliclink.com port=443 +(I) [19:33:32.722] [000010680]: System was measured to be capable of copying [17866] MB/sec. +(I) [19:33:33.414] [000015544]: WebSocketConnection::OnConnect; m_resumeState=0 +(I) [19:33:33.414] [000015544]: WebSocketConnection::Process: Sending session token; clientLibVersion=184 sessionToken=wsuvtcop0raccmb25ltu0pmmyb8vp6 +(I) [19:33:35.565] [000010680]: Movie Manager -- No movies with locale [fr] exist on disk. Switching to fallback locale [en]. +(I) [19:33:36.743] [000015544]: Read bytes [0,"PresenceMessage",16432,[[12022,16432,"/steam/76561198005864560","","UMirinBrah?","",11893,11551,11551,2074389,null,"76561198005864560",3,[],1,"En ligne",[[1409823,""]]]]] +(I) [19:33:40.643] [000010680]: Movie Manager -- No movies with locale [fr] exist on disk. Switching to fallback locale [en]. +(I) [19:33:44.750] [000010680]: GetPartyStatsByID found 1 teams for user ID 16432 +(I) [19:33:48.718] [000010680]: Movie Manager -- No movies with locale [fr] exist on disk. Switching to fallback locale [en]. +(I) [19:33:58.765] [000010680]: Movie Manager -- No movies with locale [fr] exist on disk. Switching to fallback locale [en]. +(I) [19:33:58.786] [000010680]: Movie Manager -- No movies with locale [fr] exist on disk. Switching to fallback locale [en]. +(I) [19:33:58.814] [000010680]: Movie Manager -- No movies with locale [fr] exist on disk. Switching to fallback locale [en]. +(I) [19:35:20.954] [000010680]: SAVE -- Save game is too old ([3579526] < [4056836]) +(I) [19:35:20.990] [000010680]: LuaMap::GetData_CS - Error: variable [metamap_save_hash] not found in data store +(I) [19:35:20.990] [000010680]: LuaMap::GetData_CS - Error: variable [mission_save_hash] not found in data store +(I) [19:35:21.026] [000010680]: SAVE -- Save game is too old ([3579526] < [4056836]) +(I) [19:35:21.055] [000010680]: GAME -- ValidateScenarioDesc(): Gamesave app version mismatch (data:scenarios\missions\skirmish\rural_1_sp\rural_1_sp ver binary version stamp or crc/data crc:8849/-1813185163) required:21751/-1194761900 +(I) [19:35:21.061] [000010680]: SAVE -- Save game is too old ([3579526] < [4056836]) +(I) [19:35:21.092] [000010680]: LuaMap::GetData_CS - Error: variable [metamap_save_hash] not found in data store +(I) [19:35:21.092] [000010680]: LuaMap::GetData_CS - Error: variable [mission_save_hash] not found in data store +(I) [19:35:21.386] [000010680]: SAVE -- Save game is too old ([3579526] < [4056836]) +(I) [19:35:21.418] [000010680]: LuaMap::GetData_CS - Error: variable [metamap_save_hash] not found in data store +(I) [19:35:21.418] [000010680]: LuaMap::GetData_CS - Error: variable [mission_save_hash] not found in data store +(I) [19:35:21.471] [000010680]: SAVE -- Save game is too old ([3579526] < [4056836]) +(I) [19:35:21.503] [000010680]: LuaMap::GetData_CS - Error: variable [metamap_save_hash] not found in data store +(I) [19:35:21.503] [000010680]: LuaMap::GetData_CS - Error: variable [mission_save_hash] not found in data store +(I) [19:35:21.546] [000010680]: SAVE -- Save game is too old ([3579526] < [4056836]) +(I) [19:35:21.577] [000010680]: LuaMap::GetData_CS - Error: variable [metamap_save_hash] not found in data store +(I) [19:35:21.577] [000010680]: LuaMap::GetData_CS - Error: variable [mission_save_hash] not found in data store +(I) [19:35:21.622] [000010680]: SAVE -- Save game is too old ([3579526] < [4056836]) +(I) [19:35:21.654] [000010680]: LuaMap::GetData_CS - Error: variable [metamap_save_hash] not found in data store +(I) [19:35:21.654] [000010680]: LuaMap::GetData_CS - Error: variable [mission_save_hash] not found in data store +(I) [19:35:21.699] [000010680]: SAVE -- Save game is too old ([3579526] < [4056836]) +(I) [19:35:21.730] [000010680]: LuaMap::GetData_CS - Error: variable [metamap_save_hash] not found in data store +(I) [19:35:21.730] [000010680]: LuaMap::GetData_CS - Error: variable [mission_save_hash] not found in data store +(I) [19:35:21.774] [000010680]: SAVE -- Save game is too old ([3579526] < [4056836]) +(I) [19:35:21.807] [000010680]: LuaMap::GetData_CS - Error: variable [metamap_save_hash] not found in data store +(I) [19:35:21.807] [000010680]: LuaMap::GetData_CS - Error: variable [mission_save_hash] not found in data store +(I) [19:35:21.851] [000010680]: SAVE -- Save game is too old ([3579526] < [4056836]) +(I) [19:35:21.883] [000010680]: LuaMap::GetData_CS - Error: variable [metamap_save_hash] not found in data store +(I) [19:35:21.883] [000010680]: LuaMap::GetData_CS - Error: variable [mission_save_hash] not found in data store +(I) [19:35:21.927] [000010680]: SAVE -- Save game is too old ([3579526] < [4056836]) +(I) [19:35:21.959] [000010680]: LuaMap::GetData_CS - Error: variable [metamap_save_hash] not found in data store +(I) [19:35:21.959] [000010680]: LuaMap::GetData_CS - Error: variable [mission_save_hash] not found in data store +(I) [19:35:22.002] [000010680]: SAVE -- Save game is too old ([3579526] < [4056836]) +(I) [19:35:22.047] [000010680]: LuaMap::GetData_CS - Error: variable [metamap_save_hash] not found in data store +(I) [19:35:22.047] [000010680]: LuaMap::GetData_CS - Error: variable [mission_save_hash] not found in data store +(I) [19:35:22.092] [000010680]: SAVE -- Save game is too old ([3579526] < [4056836]) +(I) [19:35:22.124] [000010680]: LuaMap::GetData_CS - Error: variable [metamap_save_hash] not found in data store +(I) [19:35:22.124] [000010680]: LuaMap::GetData_CS - Error: variable [mission_save_hash] not found in data store +(I) [19:35:22.169] [000010680]: SAVE -- Save game is too old ([3579526] < [4056836]) +(I) [19:35:22.201] [000010680]: LuaMap::GetData_CS - Error: variable [metamap_save_hash] not found in data store +(I) [19:35:22.201] [000010680]: LuaMap::GetData_CS - Error: variable [mission_save_hash] not found in data store +(I) [19:35:22.245] [000010680]: SAVE -- Save game is too old ([3579526] < [4056836]) +(I) [19:35:22.277] [000010680]: LuaMap::GetData_CS - Error: variable [metamap_save_hash] not found in data store +(I) [19:35:22.277] [000010680]: LuaMap::GetData_CS - Error: variable [mission_save_hash] not found in data store +(I) [19:35:22.321] [000010680]: SAVE -- Save game is too old ([3579526] < [4056836]) +(I) [19:35:22.353] [000010680]: LuaMap::GetData_CS - Error: variable [metamap_save_hash] not found in data store +(I) [19:35:22.353] [000010680]: LuaMap::GetData_CS - Error: variable [mission_save_hash] not found in data store +(I) [19:35:22.398] [000010680]: SAVE -- Save game is too old ([3579526] < [4056836]) +(I) [19:35:22.429] [000010680]: LuaMap::GetData_CS - Error: variable [metamap_save_hash] not found in data store +(I) [19:35:22.429] [000010680]: LuaMap::GetData_CS - Error: variable [mission_save_hash] not found in data store +(I) [19:35:22.474] [000010680]: SAVE -- Save game is too old ([3579526] < [4056836]) +(I) [19:35:22.505] [000010680]: LuaMap::GetData_CS - Error: variable [metamap_save_hash] not found in data store +(I) [19:35:22.505] [000010680]: LuaMap::GetData_CS - Error: variable [mission_save_hash] not found in data store +(I) [19:35:22.550] [000010680]: SAVE -- Save game is too old ([3579526] < [4056836]) +(I) [19:35:22.582] [000010680]: LuaMap::GetData_CS - Error: variable [metamap_save_hash] not found in data store +(I) [19:35:22.582] [000010680]: LuaMap::GetData_CS - Error: variable [mission_save_hash] not found in data store +(I) [19:35:22.627] [000010680]: SAVE -- Save game is too old ([3579526] < [4056836]) +(I) [19:35:22.659] [000010680]: LuaMap::GetData_CS - Error: variable [metamap_save_hash] not found in data store +(I) [19:35:22.659] [000010680]: LuaMap::GetData_CS - Error: variable [mission_save_hash] not found in data store +(I) [19:35:22.704] [000010680]: SAVE -- Save game is too old ([3579526] < [4056836]) +(I) [19:35:22.736] [000010680]: LuaMap::GetData_CS - Error: variable [metamap_save_hash] not found in data store +(I) [19:35:22.736] [000010680]: LuaMap::GetData_CS - Error: variable [mission_save_hash] not found in data store +(I) [19:35:22.781] [000010680]: SAVE -- Save game is too old ([3579526] < [4056836]) +(I) [19:35:22.813] [000010680]: LuaMap::GetData_CS - Error: variable [metamap_save_hash] not found in data store +(I) [19:35:22.813] [000010680]: LuaMap::GetData_CS - Error: variable [mission_save_hash] not found in data store +(I) [19:35:22.858] [000010680]: SAVE -- Save game is too old ([3579526] < [4056836]) +(I) [19:35:22.890] [000010680]: LuaMap::GetData_CS - Error: variable [metamap_save_hash] not found in data store +(I) [19:35:22.890] [000010680]: LuaMap::GetData_CS - Error: variable [mission_save_hash] not found in data store +(I) [19:35:22.935] [000010680]: SAVE -- Save game is too old ([3579526] < [4056836]) +(I) [19:35:22.967] [000010680]: LuaMap::GetData_CS - Error: variable [metamap_save_hash] not found in data store +(I) [19:35:22.967] [000010680]: LuaMap::GetData_CS - Error: variable [mission_save_hash] not found in data store +(I) [19:35:23.013] [000010680]: SAVE -- Save game is too old ([3579526] < [4056836]) +(I) [19:35:23.032] [000010680]: GAME -- ValidateScenarioDesc(): Gamesave app version mismatch (data:scenarios\missions\africa\archetype\destroy\desert_route_tank_battle ver binary version stamp or crc/data crc:8369/-2068725181) required:21751/-1194761900 +(I) [19:35:23.251] [000010680]: Movie Manager -- No movies with locale [fr] exist on disk. Switching to fallback locale [en]. +(I) [19:35:23.324] [000010680]: Movie Manager -- No movies with locale [fr] exist on disk. Switching to fallback locale [en]. +(I) [19:35:30.091] [000015544]: Read bytes [0,"PresenceMessage",16432,[[12023,16432,"/steam/76561198005864560","","UMirinBrah?","",11893,11551,11551,2074389,null,"76561198005864560",3,[],2,"En ligne",[[1409823,""]]]]] +(I) [19:38:33.708] [000010680]: GetPartyStatsByID found 1 teams for user ID 16432 +(I) [19:40:24.802] [000010680]: Invalid group observer_replay found in profile TEST. Ignoring +(I) [19:40:24.802] [000010680]: default binding was not found for command [focus_next_vehicle] in [TEST]. The command could be deleted. Ignored +(I) [19:40:24.802] [000010680]: default binding was not found for command [focus_next_infantry] in [TEST]. The command could be deleted. Ignored +(I) [19:40:24.802] [000010680]: default binding was not found for command [pick_next_vehicle] in [TEST]. The command could be deleted. Ignored +(I) [19:40:24.802] [000010680]: default binding was not found for command [focus_next_idle_emplacement] in [TEST]. The command could be deleted. Ignored +(I) [19:40:24.802] [000010680]: default binding was not found for command [pick_next_infantry] in [TEST]. The command could be deleted. Ignored +(I) [19:40:24.803] [000010680]: default binding was not found for command [pick_all_emplacements] in [TEST]. The command could be deleted. Ignored +(I) [19:40:24.803] [000010680]: default binding was not found for command [pick_next_emplacement] in [TEST]. The command could be deleted. Ignored +(I) [19:40:24.803] [000010680]: default binding was not found for command [pick_all_idle_emplacements] in [TEST]. The command could be deleted. Ignored +(I) [19:40:24.803] [000010680]: default binding was not found for command [pick_next_idle_vehicle] in [TEST]. The command could be deleted. Ignored +(I) [19:40:24.803] [000010680]: default binding was not found for command [focus_next_emplacement] in [TEST]. The command could be deleted. Ignored +(I) [19:40:24.803] [000010680]: default binding was not found for command [pick_next_idle_emplacement] in [TEST]. The command could be deleted. Ignored +(I) [19:40:24.803] [000010680]: default binding was not found for command [pick_all_on_screen] in [TEST]. The command could be deleted. Ignored +(I) [19:40:24.803] [000010680]: default binding was not found for command [pick_next_idle_infantry] in [TEST]. The command could be deleted. Ignored +(I) [19:40:24.803] [000010680]: default binding was not found for command [focus_next_idle_vehicle] in [TEST]. The command could be deleted. Ignored +(I) [19:40:24.803] [000010680]: default binding was not found for command [focus_next_idle_infantry] in [TEST]. The command could be deleted. Ignored +(I) [19:40:24.803] [000010680]: default binding was not found for command [pick_all] in [TEST]. The command could be deleted. Ignored +(I) [19:40:24.804] [000010680]: default binding was not found for command [zoom] in [TEST]. The command could be deleted. Ignored +(I) [19:40:28.398] [000010680]: starting online hosting +(I) [19:40:31.772] [000010680]: OnlineHostAsync success +(I) [19:40:31.772] [000010680]: Created Matchinfo for sessionID 17367142 +(I) [19:40:31.772] [000010680]: OnJoinAdvertisementSuccess - joined online match, server leave notification required +(I) [19:40:31.772] [000010680]: starting local hosting +(I) [19:40:31.772] [000010680]: ValidateCustomData: called with 5250 bytes of custom data +(I) [19:40:31.772] [000010680]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [19:40:31.775] [000010680]: Sending matchinfo change #2 +(I) [19:40:31.775] [000010680]: HostAsync - got operation info 0:SessionOperationInfo::SUCCESS +(I) [19:40:31.777] [000010680]: hosting - Session is connected +(I) [19:40:31.785] [000002600]: MessageCounts: inval=0/0, seek=0/0, join=1/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=1/0, Pdel=0/0, drop=0/0, data=1/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=3/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=3/0, lb_p=0/1, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=1/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(E) [19:40:31.894] [000010680]: Rejecting packet type 0 that claims to come from ourself +(I) [19:40:32.014] [000010680]: CreateSteamSessionAsync::Process: Successfully created lobby; lobbyId=109775241669588183 +(I) [19:40:32.951] [000015544]: Read bytes [0,"PlatformSessionUpdateMessage",16432,[17367142,"0",109775241669588183,0,"",""]] +(I) [19:40:32.951] [000010680]: Sending matchinfo change #3 +(I) [19:40:32.961] [000010680]: HostAsync - completed with HostResult = 0 +(I) [19:40:32.961] [000010680]: Party::SetHostJoinResult - 0 +(I) [19:40:32.961] [000010680]: Party::SetStatus - S_CONFIGURING +(I) [19:40:32.961] [000010680]: WorldwideAutomatchService::OnHostComplete - automatcher is no longer active - stopPollPending 0 automatchPollID 18446744073709551615 +(E) [19:40:33.025] [000010680]: Rejecting packet type 0 that claims to come from ourself +(I) [19:40:33.076] [000010680]: Sending matchinfo change #4 +(E) [19:40:33.146] [000010680]: Rejecting packet type 0 that claims to come from ourself +(I) [19:40:34.540] [000010680]: Sending matchinfo change #5 +(E) [19:40:34.647] [000010680]: Rejecting packet type 0 that claims to come from ourself +(I) [19:40:34.797] [000010680]: Sending matchinfo change #6 +(E) [19:40:34.898] [000010680]: Rejecting packet type 0 that claims to come from ourself +(I) [19:40:35.797] [000010680]: Sending matchinfo change #7 +(E) [19:40:35.896] [000010680]: Rejecting packet type 0 that claims to come from ourself +(I) [19:40:39.201] [000010680]: SessionID : 1090066 - Disconnect called with reasonID 1000 - Destroying Party +(I) [19:40:39.206] [000010680]: Sending matchinfo change #8 +(E) [19:40:39.212] [000010680]: SetVisible called while !IsConnected +(E) [19:40:39.274] [000010680]: Rejecting packet type 0 that claims to come from ourself +(I) [19:40:39.333] [000010680]: Sending matchinfo change #9 +(E) [19:40:39.396] [000010680]: Rejecting packet type 0 that claims to come from ourself +(I) [19:40:39.456] [000010680]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [19:40:39.456] [000010680]: WorldwidePartyService::PeerRemove, Removing peer ID: 1 +(I) [19:40:39.456] [000010680]: peerremove - peerIDRemoved=16432, reasonID=1000, reason debug hint - Destroying Party +(E) [19:40:39.459] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:40:39.470] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:40:39.481] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:40:39.492] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:40:39.503] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:40:39.514] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:40:39.525] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:40:39.536] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:40:39.547] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:40:39.558] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:40:39.569] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:40:39.580] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:40:39.591] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:40:39.602] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:40:39.613] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:40:39.624] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:40:39.635] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:40:39.646] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:40:39.657] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:40:39.668] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:40:39.679] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:40:39.690] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:40:39.701] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:40:39.712] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:40:39.722] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:40:39.733] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:40:39.744] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:40:39.755] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:40:39.766] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:40:39.777] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:40:39.788] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:40:39.799] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:40:39.810] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [19:40:39.810] [000010680]: PeerRemoveAll - flushing local session peer data +(I) [19:40:39.810] [000010680]: LeaveSessionInternal - no action taken, needLeave=0, service=0 +(I) [19:40:39.810] [000010680]: Destroyed Matchinfo for sessionID 17367142 +(E) [19:40:39.811] [000010680]: Socks::Free: Socket 0/5588 did not close properly before being freed. +(I) [19:40:39.811] [000010680]: OnDestroyPartyNotification - partyID = 17367142, prevID = -1 +(I) [19:40:39.811] [000010680]: OnDestroyPartyNotification - partyID = 17367142, prevID = -1 +(I) [19:40:41.873] [000010680]: MatchSetupManager -- RACE for slot 0 was INVALID, assigning arbitrary race and faction. +(I) [19:40:41.873] [000010680]: MatchSetupManager -- RACE for slot 1 was INVALID, assigning arbitrary race and faction. +(I) [19:40:41.873] [000010680]: MatchSetupManager -- RACE for slot 2 was INVALID, assigning arbitrary race and faction. +(I) [19:40:41.873] [000010680]: MatchSetupManager -- RACE for slot 3 was INVALID, assigning arbitrary race and faction. +(I) [19:40:41.873] [000010680]: MatchSetupManager -- RACE for slot 4 was INVALID, assigning arbitrary race and faction. +(I) [19:40:41.873] [000010680]: MatchSetupManager -- RACE for slot 5 was INVALID, assigning arbitrary race and faction. +(I) [19:40:41.873] [000010680]: MatchSetupManager -- RACE for slot 6 was INVALID, assigning arbitrary race and faction. +(I) [19:40:41.873] [000010680]: MatchSetupManager -- RACE for slot 7 was INVALID, assigning arbitrary race and faction. +(I) [19:40:41.873] [000010680]: MatchSetupManager -- RACE for slot 8 was INVALID, assigning arbitrary race and faction. +(I) [19:40:41.873] [000010680]: MatchSetupManager -- RACE for slot 9 was INVALID, assigning arbitrary race and faction. +(I) [19:40:41.873] [000010680]: MatchSetupManager -- RACE for slot 10 was INVALID, assigning arbitrary race and faction. +(I) [19:40:41.873] [000010680]: MatchSetupManager -- RACE for slot 11 was INVALID, assigning arbitrary race and faction. +(I) [19:40:41.873] [000010680]: MatchSetupManager -- RACE for slot 12 was INVALID, assigning arbitrary race and faction. +(I) [19:40:41.873] [000010680]: MatchSetupManager -- RACE for slot 13 was INVALID, assigning arbitrary race and faction. +(I) [19:40:41.873] [000010680]: MatchSetupManager -- RACE for slot 14 was INVALID, assigning arbitrary race and faction. +(I) [19:40:41.873] [000010680]: MatchSetupManager -- RACE for slot 15 was INVALID, assigning arbitrary race and faction. +(I) [19:40:41.875] [000010680]: starting online hosting +(I) [19:40:44.690] [000015544]: Read bytes [0,"PresenceMessage",16432,[[12024,16432,"/steam/76561198005864560","","UMirinBrah?","",11893,11551,11551,2074389,null,"76561198005864560",3,[],1409814,"Parcourt les parties",[[1409823,""]]]]] +(I) [19:40:45.647] [000010680]: OnlineHostAsync success +(I) [19:40:45.647] [000010680]: Created Matchinfo for sessionID 17367150 +(I) [19:40:45.647] [000010680]: OnJoinAdvertisementSuccess - joined online match, server leave notification required +(I) [19:40:45.647] [000010680]: starting local hosting +(I) [19:40:45.648] [000010680]: ValidateCustomData: called with 5306 bytes of custom data +(I) [19:40:45.648] [000010680]: WorldwideAdvertisementService::Process - EVENT_NEWPEER +(I) [19:40:45.651] [000010680]: Sending matchinfo change #2 +(I) [19:40:45.654] [000010680]: HostAsync - got operation info 0:SessionOperationInfo::SUCCESS +(I) [19:40:45.657] [000010680]: hosting - Session is connected +(I) [19:40:45.663] [000002600]: MessageCounts: inval=0/0, seek=0/0, join=1/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=1/0, Pdel=0/0, drop=0/0, data=1/0, mdat=0/0, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=3/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=3/0, lb_p=0/0, lb_c=0/0, cast=0/0, cdat=0/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=1/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(E) [19:40:45.795] [000010680]: Rejecting packet type 0 that claims to come from ourself +(I) [19:40:45.915] [000010680]: CreateSteamSessionAsync::Process: Successfully created lobby; lobbyId=109775241669588763 +(I) [19:40:46.883] [000015544]: Read bytes [0,"PlatformSessionUpdateMessage",16432,[17367150,"0",109775241669588763,0,"",""]] +(I) [19:40:46.885] [000010680]: Sending matchinfo change #3 +(I) [19:40:46.899] [000010680]: HostAsync - completed with HostResult = 0 +(I) [19:40:46.899] [000010680]: Publishing Visible match +(I) [19:40:46.899] [000010680]: WorldwidePartyService::SetMatchState - state 0 unchanged ignoring +(I) [19:40:46.900] [000010680]: WorldwideAutomatchService::OnHostComplete - automatcher is no longer active - stopPollPending 0 automatchPollID 18446744073709551615 +(I) [19:40:47.015] [000010680]: Sending matchinfo change #24 +(E) [19:40:47.024] [000010680]: Rejecting packet type 0 that claims to come from ourself +(E) [19:40:47.153] [000010680]: Rejecting packet type 0 that claims to come from ourself +(I) [19:40:51.227] [000010680]: Sending matchinfo change #26 +(E) [19:40:51.271] [000010680]: Rejecting packet type 0 that claims to come from ourself +(I) [19:40:52.939] [000010680]: Sending matchinfo change #27 +(E) [19:40:53.022] [000010680]: Rejecting packet type 0 that claims to come from ourself +(I) [19:40:54.223] [000015544]: Read bytes [0,"PresenceMessage",16432,[[12025,16432,"/steam/76561198005864560","","UMirinBrah?","",11893,11551,11551,2074389,null,"76561198005864560",3,[],1526767,"Dans l'accueil de la partie personnalisée",[[1409823,"17367150"]]]]] +(I) [19:40:55.596] [000019272]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [None] +(I) [19:40:55.607] [000019272]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [None] +(I) [19:40:55.607] [000019272]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [19:40:55.948] [000010680]: Sending matchinfo change #28 +(I) [19:40:55.990] [000010680]: WorldwidePartyService::SetMatchState - state 1 - updating server +(E) [19:40:56.021] [000010680]: Rejecting packet type 0 that claims to come from ourself +(I) [19:40:57.129] [000010680]: Sending matchinfo change #29 +(I) [19:40:57.129] [000010680]: WorldwideAutomatchService::OnStartComplete - detected successful game start +(I) [19:40:57.129] [000010680]: Match Started - [16432 /steam/76561198005864560], slot = 0, ranking = -1 +(E) [19:40:57.271] [000010680]: Rejecting packet type 0 that claims to come from ourself +(I) [19:40:57.631] [000015544]: Read bytes [0,"MatchStartMessage",16432,[[[16432,["2068341","2068340","2068342"]]],[["16432","129494"]],1704652858,[["16432",[[1543315,212,451707,16432,1,0,"{}",1677175591,2,-1,19,2147483647],[1543351,1,453412,16432,1,0,"{}",1677175591,4,-1,3,2147483647],[1543317,206,451861,16432,1,0,"{}",1677175591,6,-1,19,2147483647],[1543180,212,453392,16432,1,0,"{\"att\":{\"is_new\":{\"val\":\"0\"}},\"epos\":\"6\",\"eslot\":\"6\",\"dlc\":1}",1677175591,1543315,-1,19,-1],[1543185,212,453358,16432,1,0,"{\"att\":{\"is_new\":{\"val\":\"0\"}},\"epos\":\"3\",\"eslot\":\"3\",\"dlc\":1}",1677175591,1543315,-1,19,-1],[1543319,215,453171,16432,1,0,"{\"epos\":\"0\",\"eslot\":\"0\"}",1677175591,1543315,-1,19,2147483647],[1543320,214,453172,16432,1,0,"{\"epos\":\"2\",\"eslot\":\"2\"}",1677175591,1543315,-1,19,2147483647],[1543353,197,453623,16432,1,0,"{\"epos\":\"8\",\"eslot\":\"8\"}",1677175591,1543315,-1,19,2147483647],[1543355,197,453954,16432,1,0,"{\"epos\":\"5\",\"eslot\":\"5\"}",1677175591,1543315,-1,19,2147483647],[1543358,212,454056,16432,1,0,"{\"epos\":\"13\",\"eslot\":\"13\"}",1677175591,1543315,-1,19,2147483647],[1543359,212,454057,16432,1,0,"{\"epos\":\"12\",\"eslot\":\"12\"}",1677175591,1543315,-1,19,2147483647],[1543360,212,454058,16432,1,0,"{\"epos\":\"17\",\"eslot\":\"17\"}",1677175591,1543315,-1,19,2147483647],[1543361,212,454059,16432,1,0,"{\"epos\":\"16\",\"eslot\":\"16\"}",1677175591,1543315,-1,19,2147483647],[1543362,212,454060,16432,1,0,"{\"epos\":\"15\",\"eslot\":\"15\"}",1677175591,1543315,-1,19,2147483647],[1543368,212,454061,16432,1,0,"{\"epos\":\"20\",\"eslot\":\"20\"}",1677175591,1543315,-1,19,2147483647],[49038922,201,454905,16432,1,0,"{\"epos\":\"21\",\"att\":{\"is_new\":{\"val\":\"0\"}},\"eslot\":\"21\"}",1685118658,1543315,-1,51,-1],[49038923,201,454903,16432,1,0,"{\"epos\":\"18\",\"att\":{\"is_new\":{\"val\":\"0\"}},\"eslot\":\"18\"}",1685118658,1543315,-1,51,-1],[49038924,201,454900,16432,1,0,"{\"epos\":\"14\",\"att\":{\"is_new\":{\"val\":\"0\"}},\"eslot\":\"14\"}",1685118658,1543315,-1,51,-1],[55985661,89,457990,16432,1,0,"{\"epos\":\"10\",\"att\":{\"is_new\":{\"val\":\"0\"}},\"eslot\":\"10\"}",1697205524,1543315,-1,51,-1],[57412989,16,454899,16432,1,0,"{\"att\":{\"is_new\":{\"val\":\"0\"}},\"epos\":\"9\",\"eslot\":\"9\"}",1700427631,1543315,-1,51,-1],[57412990,16,454902,16432,1,0,"{\"att\":{\"is_new\":{\"val\":\"0\"}},\"epos\":\"7\",\"eslot\":\"7\"}",1700427631,1543315,-1,51,-1],[57412991,31,458001,16432,1,0,"{\"att\":{\"is_new\":{\"val\":\"0\"}},\"epos\":\"11\",\"eslot\":\"11\"}",1700427631,1543315,-1,51,-1],[58672163,31,453173,16432,1,0,"{\"att\":{\"is_new\":{\"val\":\"0\"}},\"epos\":\"1\",\"eslot\":\"1\",\"dlc\":1}",1701811414,1543315,-1,19,-1],[58672231,22,456444,16432,7,0,"{\"att\":{\"is_new\":{\"val\":\"0\"}},\"epos\":\"19\",\"eslot\":\"19\"}",1701811429,1543315,-1,51,-1],[58672232,22,456445,16432,7,0,"{\"att\":{\"is_new\":{\"val\":\"0\"}},\"epos\":\"4\",\"eslot\":\"4\"}",1701811429,1543315,-1,51,-1],[1543187,1,454524,16432,1,0,"{\"epos\":\"0\",\"eslot\":\"0\",\"dlc\":1}",1677175591,1543351,-1,19,-1],[1543191,1,454522,16432,1,0,"{\"epos\":\"10\",\"eslot\":\"10\",\"dlc\":1}",1677175591,1543351,-1,19,-1]]]],[17367150,109775241669588763,0,"","","0",16432,1,"unnamed_session","unnamed_session",0,"desert_village_2p_mkiii","eNq1Vd9v2jAQ3p9S5XWdFkIIDVIfoLQVbddSYO2kqrKMY8INx04dB0or/vfZiaEBQfey5SHK3Xff3dn3I+9OghKcjpYpdVrusZYWwM8Ej0CB4Nd06bRq+gmCsBnWDRzjhHZhMgGSM2VQoyRTilVmBe1uqLBUN4Jg4ySzjg1zmFIaOS1vN9Bdai3fNSAKYUjJRgcZmogYiQlaYIkox2Nm3BwEaqtjA8VMjDFDGHYoe/SWMX1BOFcCSQp8IiShKIKsSv3MwPoAninMFcJjYKCW2pRMsYzpThJ/N3O3/RF9GUrmxa0c8LXfZCevVIroUy/7DKwPSTORm1MDJyLZPdJB1LBTkeasaAhEcIrEnEoJETXUg1DNdc0lZGUroMy0FfB4E6hojrJdqroqRwGZUVU13GgapfO1U51ygnlEJUoF8JLyCbjF3Upon7a2Wq1M09tql/1uByPnoLYVaSxxRLd0UkcXybAYH9+tN09c3/WaBmFCnydaU0F/BaEfnASunUZFpsUcO85G1nM3gfiC4Vin5p0EBsiYUFt6px+32+2ur1/tr+b1T+T26elHHn19Q1T1O5c9nbXz3TyLDZ7e6oWh1ZG2kQrNgem8KPJSlMwAoLBieEnlqEj36dnSLikfwptm+l7oh0HTCxsfyA1eilztxzogkgO0fhGoWGuVNaeBQaUs7of6zrZweaFdrHC52qLiy3FWlVyJHhMJolzBhWvMmFiUIc9fFeWZboM+JrOsig9oyjChCeWqiiUiMuLWQrW6Qv +(I) [19:40:57.632] [000010680]: Match start message slots; slots=0 +(I) [19:40:57.632] [000010680]: Match start message members; members=1 +(I) [19:40:57.632] [000010680]: 0: sessionId:17367150 profileId:16432 statGroupId:11893 raceId:129494 teamId:0 ranking:-1 url:/10.0.70.34 +(I) [19:40:57.632] [000010680]: Match start message; id=17367150 state=1 encodedSlots=eNrtVl2TmzYU7W/x86YjhNmUzORhbSMMXbOL+BCo0wdAONh8LF0wNu70v1eAvcGbbpsmfUg6+8AgdCXde4/uuQcBXv3y+6R8fFhvslgr1g8/btjknXA9FeHVpKqDevNQaAs+czWp4yDvhuBqsg6is4EvewyiuF8D5ak87b6L9DZu4qxf232tgjpK7Lbsl73pztrk8X38iB6DPF5Z/bpNheOAtf24c7yr+mEe18EiqIPJu0nc6rUHsx2GqKaWdr2a7zehK5dhQbOwwE1UZBYlKI07m9Xb9qGKJOrpH+eHPa1PpDSEgs1U1DI0ayKYgYDIO237sL+dcz+iAXxP53NS4ajyMfBwGcLp5m4DDr0dCg1Fs8SH9X207GzSUduWb7VcWIdETh0VbQNxtbkravnZeoV6syzMMX+Mknp8TVaz9RBvHUJs+sR4xPkhod3+7U11cSbADYNSFUKUOku9oaKeRcO63Wpxs++ewZ+UUYIzqnC/S2MRiu6OzZ9w2VHiptxucH9HrMpimB8av1s/f8LoKRaLSCgq9CbaaNfnO6CqOx3P39rKszj5PXl6G4oax0yfmQ568bm3weaUfxK4sywqjCbMUcUxl/h9bLTNyeb0MTbMM3m+Zntnm5Kxjfjb6X0z1U1CB1WhmiUc26zbe9v+1Ny2stj5GHBBbehlbqSytss3arVrIlbd+anv4aTbY0KGMNkDJiRPMcZbWpCnmBNkEh13Yyt3DVyw07xyYGCUm/cAqZCdvxUzvcgbX+IwnGEtjZJkyZzlhmTZVA9SVNqK8XOortp4SVMTpNAi5Swg1KaeJq1SYdhPqnG8ypD36RETY+yrn4NUPMUsn/DVRzzSOZa1Aw8NW57r89DXNlUR8DmPtNQosOPWlsf8p7Ptm3G+GnbQxunHZWk7Z39otiJslLeyN3JGz99YuawV57JWlif8j4Fb+mZBt7HT46Hz2lhY+WG7KhJIFUM30uw3i2S5A11eH/o5/0dj+TFePB9h1MpTe+zL6ufy833eW1pfY7zmISUSCEVdsjzOYdeoQhF33A89D1QDP3DCVKWr+wUFLrLsmXUL0BnvwzhfS3FnftaPF3bqcn/CucbEMQ4re1x/eH5RO+4ln/AQs8Z7WkAUHfpi1uOBSbYyQVn5R33KcrwY6sstaY4Tl2ite9ofHLFIlPN5ZjOupVgRxnd3YbtbnDjGuc9y3m9UuY2dDFAi2KEqg55rgiB7A9fTEEgNQzrnKm5Ckl33PX0JbiZ/XH0qSZ1qjPTozUiQhAtBEkaCJL4VoHghSMLXCRL8ckGavwrSXwrS/J8FiYuLsLJTYbVI4d3iw8tCU1QD/jyXWBkL0CcY6WHqtlEut33D/xtxMm0gawXoffokM/ndHTm2CRcZ0N2fxn3RHAnhEnf2daTyc6G888mhZMv0LDqlrcoJVWWhz3l7IxqLD9NT7pwgqDbJoQoI2vnQ4fFqp8YdyefGw+++jl13z/Hl57h9w3nWbOYMZMh0Dd4AePOwP4+Mt8tn4lcwnTdux/EyjYEvFQddtBx35iquZC3ZZzZPgQ1Y4cbOZeDkiP9kyHXglZ2Q79fmzft/2xhe/FMF/+VPqnDRE76ueYFvMkbwUoP9ZnGE3wGO4DvAUfgOcHzl9SuvX3n9yuv/M69//eFP41ZOpA== options=eNq1Vd9v2jAQ3p9S5XWdFkIIDVIfoLQVbddSYO2kqrKMY8INx04dB0or/vfZiaEBQfey5SHK3Xff3dn3I+9OghKcjpYpdVrusZYWwM8Ej0CB4Nd06bRq+gmCsBnWDRzjhHZhMgGSM2VQoyRTilVmBe1uqLBUN4Jg4ySzjg1zmFIaOS1vN9Bdai3fNSAKYUjJRgcZmogYiQlaYIkox2Nm3BwEaqtjA8VMjDFDGHYoe/SWMX1BOFcCSQp8IiShKIKsSv3MwPoAninMFcJjYKCW2pRMsYzpThJ/N3O3/RF9GUrmxa0c8LXfZCevVIroUy/7DKwPSTORm1MDJyLZPdJB1LBTkeasaAhEcIrEnEoJETXUg1DNdc0lZGUroMy0FfB4E6hojrJdqroqRwGZUVU13GgapfO1U51ygnlEJUoF8JLyCbjF3Upon7a2Wq1M09tql/1uByPnoLYVaSxxRLd0UkcXybAYH9+tN09c3/WaBmFCnydaU0F/BaEfnASunUZFpsUcO85G1nM3gfiC4Vin5p0EBsiYUFt6px+32+2ur1/tr+b1T+T26elHHn19Q1T1O5c9nbXz3TyLDZ7e6oWh1ZG2kQrNgem8KPJSlMwAoLBieEnlqEj36dnSLikfwptm+l7oh0HTCxsfyA1eilztxzogkgO0fhGoWGuVNaeBQaUs7of6zrZweaFdrHC52qLiy3FWlVyJHhMJolzBhWvMmFiUIc9fFeWZboM+JrOsig9oyjChCeWqiiUiMuLWQrW6QvpWD+o1zw/DRq2hj6nfbqO0wpJMYU57XZ3g+dU0urt5eXybBff3veuO5/38NYptaazhA5VZ0Z/O6292OxoMHjtX3fzhsT737l+vg3UheVnFM/OLOCunKDv6IaLWUZtzmEI5+E45HjbTLk2pHjZOwMzO03/Mzgas/P/SfMwgm9LoAlgZzgvrzXqgr8svKLob50BMrVbPRdK6DssJHvf4HFTJcCrqW6oWQuojZWSNQNal4zz+YUbALJIvfwBorJzW +(I) [19:40:57.632] [000010680]: WorldwideAutomatchService::OnStartComplete - detected successful game start +(I) [19:40:57.632] [000010680]: Match start notification slots; slots=16 +(I) [19:40:57.632] [000010680]: 0: [16432 /steam/76561198005864560] Status:0 Team: 0 Faction: 2 Race:129494 Level: 0 Rdy=0 Perf=0 Ack=29 metaDataSize=1134 +(I) [19:40:57.632] [000010680]: 1: [-1 ] Status:2 Team: 1 Faction: 1 Race:137123 Level: 1 Rdy=0 Perf=0 Ack=0 metaDataSize=659 +(I) [19:40:57.632] [000010680]: 2: [-1 ] Status:1 Team: 0 Faction: 2 Race: 0 Level: 0 Rdy=0 Perf=0 Ack=0 metaDataSize=0 +(I) [19:40:57.632] [000010680]: 3: [-1 ] Status:1 Team: 1 Faction: 0 Race: 0 Level: 0 Rdy=0 Perf=0 Ack=0 metaDataSize=0 +(I) [19:40:57.632] [000010680]: 4: [-1 ] Status:1 Team: 0 Faction: 1 Race: 0 Level: 0 Rdy=0 Perf=0 Ack=0 metaDataSize=0 +(I) [19:40:57.632] [000010680]: 5: [-1 ] Status:1 Team: 1 Faction: 2 Race: 0 Level: 0 Rdy=0 Perf=0 Ack=0 metaDataSize=0 +(I) [19:40:57.632] [000010680]: 6: [-1 ] Status:1 Team: 0 Faction: 0 Race: 0 Level: 0 Rdy=0 Perf=0 Ack=0 metaDataSize=0 +(I) [19:40:57.632] [000010680]: 7: [-1 ] Status:1 Team: 1 Faction: 1 Race: 0 Level: 0 Rdy=0 Perf=0 Ack=0 metaDataSize=0 +(I) [19:40:57.632] [000010680]: 8: [-1 ] Status:1 Team: 0 Faction: 2 Race: 0 Level: 0 Rdy=0 Perf=0 Ack=0 metaDataSize=0 +(I) [19:40:57.632] [000010680]: 9: [-1 ] Status:1 Team: 1 Faction: 0 Race: 0 Level: 0 Rdy=0 Perf=0 Ack=0 metaDataSize=0 +(I) [19:40:57.632] [000010680]: 10: [-1 ] Status:1 Team: 0 Faction: 1 Race: 0 Level: 0 Rdy=0 Perf=0 Ack=0 metaDataSize=0 +(I) [19:40:57.632] [000010680]: 11: [-1 ] Status:1 Team: 1 Faction: 2 Race: 0 Level: 0 Rdy=0 Perf=0 Ack=0 metaDataSize=0 +(I) [19:40:57.632] [000010680]: 12: [-1 ] Status:1 Team: 0 Faction: 0 Race: 0 Level: 0 Rdy=0 Perf=0 Ack=0 metaDataSize=0 +(I) [19:40:57.632] [000010680]: 13: [-1 ] Status:1 Team: 1 Faction: 1 Race: 0 Level: 0 Rdy=0 Perf=0 Ack=0 metaDataSize=0 +(I) [19:40:57.632] [000010680]: 14: [-1 ] Status:1 Team: 0 Faction: 2 Race: 0 Level: 0 Rdy=0 Perf=0 Ack=0 metaDataSize=0 +(I) [19:40:57.632] [000010680]: 15: [-1 ] Status:1 Team: 1 Faction: 0 Race: 0 Level: 0 Rdy=0 Perf=0 Ack=0 metaDataSize=0 +(I) [19:40:57.632] [000010680]: Match start notification members; members=1 +(I) [19:40:57.632] [000010680]: 0: sessionId:17367150 profileId:16432 statGroupId:11893 raceId:129494 teamId:0 ranking:-1 url:/10.0.70.34 +(I) [19:40:57.632] [000010680]: Match start notification; id=17367150 state=1 encodedSlots=eNrtVl2TmzYU7W/x86YjhNmUzORhbSMMXbOL+BCo0wdAONh8LF0wNu70v1eAvcGbbpsmfUg6+8AgdCXde4/uuQcBXv3y+6R8fFhvslgr1g8/btjknXA9FeHVpKqDevNQaAs+czWp4yDvhuBqsg6is4EvewyiuF8D5ak87b6L9DZu4qxf232tgjpK7Lbsl73pztrk8X38iB6DPF5Z/bpNheOAtf24c7yr+mEe18EiqIPJu0nc6rUHsx2GqKaWdr2a7zehK5dhQbOwwE1UZBYlKI07m9Xb9qGKJOrpH+eHPa1PpDSEgs1U1DI0ayKYgYDIO237sL+dcz+iAXxP53NS4ajyMfBwGcLp5m4DDr0dCg1Fs8SH9X207GzSUduWb7VcWIdETh0VbQNxtbkravnZeoV6syzMMX+Mknp8TVaz9RBvHUJs+sR4xPkhod3+7U11cSbADYNSFUKUOku9oaKeRcO63Wpxs++ewZ+UUYIzqnC/S2MRiu6OzZ9w2VHiptxucH9HrMpimB8av1s/f8LoKRaLSCgq9CbaaNfnO6CqOx3P39rKszj5PXl6G4oax0yfmQ568bm3weaUfxK4sywqjCbMUcUxl/h9bLTNyeb0MTbMM3m+Zntnm5Kxjfjb6X0z1U1CB1WhmiUc26zbe9v+1Ny2stj5GHBBbehlbqSytss3arVrIlbd+anv4aTbY0KGMNkDJiRPMcZbWpCnmBNkEh13Yyt3DVyw07xyYGCUm/cAqZCdvxUzvcgbX+IwnGEtjZJkyZzlhmTZVA9SVNqK8XOortp4SVMTpNAi5Swg1KaeJq1SYdhPqnG8ypD36RETY+yrn4NUPMUsn/DVRzzSOZa1Aw8NW57r89DXNlUR8DmPtNQosOPWlsf8p7Ptm3G+GnbQxunHZWk7Z39otiJslLeyN3JGz99YuawV57JWlif8j4Fb+mZBt7HT46Hz2lhY+WG7KhJIFUM30uw3i2S5A11eH/o5/0dj+TFePB9h1MpTe+zL6ufy833eW1pfY7zmISUSCEVdsjzOYdeoQhF33A89D1QDP3DCVKWr+wUFLrLsmXUL0BnvwzhfS3FnftaPF3bqcn/CucbEMQ4re1x/eH5RO+4ln/AQs8Z7WkAUHfpi1uOBSbYyQVn5R33KcrwY6sstaY4Tl2ite9ofHLFIlPN5ZjOupVgRxnd3YbtbnDjGuc9y3m9UuY2dDFAi2KEqg55rgiB7A9fTEEgNQzrnKm5Ckl33PX0JbiZ/XH0qSZ1qjPTozUiQhAtBEkaCJL4VoHghSMLXCRL8ckGavwrSXwrS/J8FiYuLsLJTYbVI4d3iw8tCU1QD/jyXWBkL0CcY6WHqtlEut33D/xtxMm0gawXoffokM/ndHTm2CRcZ0N2fxn3RHAnhEnf2daTyc6G888mhZMv0LDqlrcoJVWWhz3l7IxqLD9NT7pwgqDbJoQoI2vnQ4fFqp8YdyefGw+++jl13z/Hl57h9w3nWbOYMZMh0Dd4AePOwP4+Mt8tn4lcwnTdux/EyjYEvFQddtBx35iquZC3ZZzZPgQ1Y4cbOZeDkiP9kyHXglZ2Q79fmzft/2xhe/FMF/+VPqnDRE76ueYFvMkbwUoP9ZnGE3wGO4DvAUfgOcHzl9SuvX3n9yuv/M69//eFP41ZOpA== options=eNq1Vd9v2jAQ3p9S5XWdFkIIDVIfoLQVbddSYO2kqrKMY8INx04dB0or/vfZiaEBQfey5SHK3Xff3dn3I+9OghKcjpYpdVrusZYWwM8Ej0CB4Nd06bRq+gmCsBnWDRzjhHZhMgGSM2VQoyRTilVmBe1uqLBUN4Jg4ySzjg1zmFIaOS1vN9Bdai3fNSAKYUjJRgcZmogYiQlaYIkox2Nm3BwEaqtjA8VMjDFDGHYoe/SWMX1BOFcCSQp8IiShKIKsSv3MwPoAninMFcJjYKCW2pRMsYzpThJ/N3O3/RF9GUrmxa0c8LXfZCevVIroUy/7DKwPSTORm1MDJyLZPdJB1LBTkeasaAhEcIrEnEoJETXUg1DNdc0lZGUroMy0FfB4E6hojrJdqroqRwGZUVU13GgapfO1U51ygnlEJUoF8JLyCbjF3Upon7a2Wq1M09tql/1uByPnoLYVaSxxRLd0UkcXybAYH9+tN09c3/WaBmFCnydaU0F/BaEfnASunUZFpsUcO85G1nM3gfiC4Vin5p0EBsiYUFt6px+32+2ur1/tr+b1T+T26elHHn19Q1T1O5c9nbXz3TyLDZ7e6oWh1ZG2kQrNgem8KPJSlMwAoLBieEnlqEj36dnSLikfwptm+l7oh0HTCxsfyA1eilztxzogkgO0fhGoWGuVNaeBQaUs7of6zrZweaFdrHC52qLiy3FWlVyJHhMJolzBhWvMmFiUIc9fFeWZboM+JrOsig9oyjChCeWqiiUiMuLWQrW6QvpWD+o1zw/DRq2hj6nfbqO0wpJMYU57XZ3g+dU0urt5eXybBff3veuO5/38NYptaazhA5VZ0Z/O6292OxoMHjtX3fzhsT737l+vg3UheVnFM/OLOCunKDv6IaLWUZtzmEI5+E45HjbTLk2pHjZOwMzO03/Mzgas/P/SfMwgm9LoAlgZzgvrzXqgr8svKLob50BMrVbPRdK6DssJHvf4HFTJcCrqW6oWQuojZWSNQNal4zz+YUbALJIvfwBorJzW +(I) [19:40:57.632] [000010680]: [MatchAd] Received MatchStartNotify. +(I) [19:40:57.632] [000010680]: [MatchAd] PlayerCount: 16 +(I) [19:40:57.632] [000010680]: ProfileID: 16432, slot: 0, ProfileName: / +(I) [19:40:57.632] [000010680]: [MatchAd] MatchAdvertisement from AdvertisementInterface not ready yet +(I) [19:40:57.632] [000010680]: GameApp::SetTargetState : new (Game) old (Uninitialized) +(I) [19:40:57.636] [000010680]: MOD - Setting player [0] race to: [129494] +(I) [19:40:57.636] [000010680]: MOD - Setting player [1] race to: [137123] +(I) [19:40:57.637] [000010680]: ModDllSetup: SetStatsGameUID=69468601 +(I) [19:40:57.637] [000010680]: GAME -- Scenario: data:scenarios\multiplayer\desert_village_2p_mkiii\desert_village_2p_mkiii +(I) [19:40:57.637] [000010680]: GAME -- Win Condition Qualified Name: 385d981096ba4ece90408281db65174e:1111669793 +(I) [19:40:57.637] [000010680]: GAME -- Win Condition Name: ccm_annihilation +(I) [19:40:57.637] [000010680]: GAME -- Mod Pack: 0 385d981096ba4ece90408281db65174e 4d4d39c656149004ee556defd90c4aeb WinConditionExtensionPackPart +(I) [19:40:57.637] [000010680]: GAME -- Human Player: 0 UMirinBrah? 16432 0 americans +(I) [19:40:57.637] [000010680]: GAME -- AI Player: 1 IA normale -1 1 germans +(I) [19:40:57.637] [000010680]: GameApp::SetState : new (LoadingGame) old (FrontEnd) +(I) [19:40:58.445] [000010680]: GameObj::StartGameObj - info, network session GUID set to [69468601]. +(I) [19:40:58.446] [000009120]: Loading step: [OnBeginLoad] +(I) [19:40:58.446] [000009120]: Loading step: [Assign Players] +(I) [19:40:58.446] [000009120]: Loading step: [FXReflection] +(I) [19:40:58.446] [000009120]: Loading step: [FXDataContext] +(I) [19:40:58.446] [000009120]: Loading step: [FX Texture Pack] +(I) [19:40:58.447] [000009120]: Loading step: [Run Havok Garbage Collection] +(I) [19:40:58.447] [000009120]: Loading step: [Flush Inventory On Application Exit] +(I) [19:40:58.447] [000009120]: Loading step: [Default World] +(I) [19:40:58.456] [000009120]: Loading step: [FX Command Function] +(I) [19:40:58.456] [000009120]: Loading step: [AnimatorCommandFunction] +(I) [19:40:58.456] [000009120]: Loading step: [MemShrink] +(I) [19:40:58.456] [000009120]: Loading step: [Sync Checking] +(I) [19:40:58.456] [000009120]: Loading step: [Tuning Variant] +(I) [19:40:58.456] [000009120]: Using scenario tuning variant [default] +(I) [19:40:58.456] [000009120]: Loading step: [Load Mod Packs] +(I) [19:40:58.456] [000009120]: Loading step: [Map Mod Packs] +(I) [19:40:58.456] [000009120]: Loading step: [SimVis System] +(I) [19:40:58.456] [000009120]: Loading step: [DefaultWorld] +(I) [19:40:58.456] [000009120]: Loading step: [Visual Physics ME] +(I) [19:40:58.456] [000009120]: Loading step: [Deferred Decal Manager] +(I) [19:40:58.456] [000009120]: Loading step: [FogVolumeManager] +(I) [19:40:58.456] [000009120]: Loading step: [Vehicle Physics Function] +(I) [19:40:58.456] [000009120]: Loading step: [Unit Occlusion Function] +(I) [19:40:58.456] [000009120]: Loading step: [Splat Function] +(I) [19:40:58.456] [000009120]: Loading step: [Grass Function] +(I) [19:40:58.456] [000009120]: Loading step: [Object Alpha Factor Function] +(I) [19:40:58.456] [000009120]: Loading step: [Renderable Managers] +(I) [19:40:58.456] [000009120]: Loading step: [Setup Skins] +(I) [19:40:58.456] [000009120]: Loading step: [AnimEventSetup] +(I) [19:40:58.456] [000009120]: Loading step: [Session Precache] +(I) [19:40:58.647] [000009120]: Loading step: [Precache core resources] +(I) [19:40:58.648] [000009120]: Loading step: [Precache EBPs] +(I) [19:40:58.833] [000009120]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [19:40:58.833] [000009120]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [19:40:58.833] [000009120]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [19:40:58.833] [000009120]: LuaMap::GetData_CS - Error: variable [player_data] not found in data store +(I) [19:40:59.051] [000009120]: Loading step: [Precache State Tree references] +(I) [19:40:59.061] [000009120]: Loading step: [Load Actions] +(I) [19:40:59.063] [000009120]: Loading step: [Load Resources from Precache] +(I) [19:41:02.356] [000019272]: RENDERING - new resize requested [2560, 1440] reason [WindowSizeEvent] +(I) [19:41:02.356] [000019272]: RENDERING - Starting compositor fullscreen transition [1] +(I) [19:41:02.356] [000019272]: RENDERING - Setting Fullscreen On +(I) [19:41:02.460] [000019272]: RENDERING - state Size [2560 x 1440], fullscreen size[2560 x 1440] +(I) [19:41:02.463] [000019272]: RENDERING - Finished compositor fullscreen transition [1] +(I) [19:41:02.463] [000019272]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [19:41:02.466] [000019272]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [19:41:02.466] [000019272]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [19:41:02.500] [000019272]: RENDERING - new resize requested [2578, 1487] reason [WindowSizeEvent] +(I) [19:41:02.500] [000019272]: RENDERING - resize request clobbering old request [2578, 1487] reason [WindowSizeEvent] +(I) [19:41:02.500] [000019272]: RENDERING - new resize requested [2560, 1440] reason [WindowSizeEvent] +(I) [19:41:02.501] [000019272]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [19:41:02.509] [000019272]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [19:41:02.509] [000019272]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [19:41:05.276] [000015544]: Read bytes [0,"PresenceMessage",16432,[[12026,16432,"/steam/76561198005864560","","UMirinBrah?","",11893,11551,11551,2074389,null,"76561198005864560",3,[],1409815,"En jeu",[[1409823,"17367150"]]]]] +(I) [19:41:06.311] [000009120]: Loading step: [GEWorld] +(I) [19:41:06.311] [000009120]: GAME - InitializeGEWorld +(I) [19:41:06.474] [000009120]: Re-winding a compressed stream for file 'data:scenarios\multiplayer\desert_village_2p_mkiii\desert_village_2p_mkiii.scenario'. Expensive operation +(I) [19:41:07.156] [000009120]: Regenerating ImpassMap data... +(I) [19:41:07.297] [000009120]: Regenerating SimTerrainCoverMap data... +(I) [19:41:07.318] [000009120]: SimTerrainCoverMap generation took 0.020683 seconds. +(I) [19:41:07.775] [000009120]: Pathfinding::Regenerate()... +(I) [19:41:07.878] [000009120]: Pathfinding::Regenerate() Done. +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.024] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.025] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.044] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.044] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.044] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.044] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.044] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.044] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.044] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.044] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.044] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.044] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.044] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.044] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.044] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.044] [000009120]: ChunkyRedirect - Identifier not found for 1313817669 global identifier. Object will be recreated from the blueprint, Please resave the map to get rid of this warning +(I) [19:41:08.053] [000009120]: GAME - CreateGEWorld in 1742 ms +(I) [19:41:08.053] [000009120]: SIM -- Setting SyncErrorChecking level to Low +(I) [19:41:08.053] [000009120]: Loading step: [Load Resources from GEWorld] +(I) [19:41:08.137] [000009120]: Loading step: [Sound Banks] +(I) [19:41:08.137] [000009120]: Loading step: [Session] +(I) [19:41:08.137] [000009120]: GAME - SessionSetup +(I) [19:41:08.138] [000009120]: GAME - SessionSetup finished in 0 ms +(I) [19:41:08.138] [000009120]: Loading step: [Player Setup] +(I) [19:41:08.147] [000009120]: GAME -- Recording game +(I) [19:41:08.147] [000009120]: Loading step: [Scenario Lua System] +(I) [19:41:08.202] [000009120]: Loading step: [Diplomacy Init] +(I) [19:41:08.202] [000009120]: Loading step: [Race Precaching Event Listener Registration] +(I) [19:41:08.202] [000009120]: Loading step: [Simulation] +(I) [19:41:08.256] [000009120]: LoadWinCondition: - [winconditions\ccm\entrypoints\ccm_annihilation] succeeded. +(I) [19:41:08.500] [000009120]: Player [1002] killed on game tick [0] due to [unused player] +(I) [19:41:08.500] [000009120]: Player [1003] killed on game tick [0] due to [unused player] +(I) [19:41:08.500] [000009120]: Player [1004] killed on game tick [0] due to [unused player] +(I) [19:41:08.500] [000009120]: Player [1005] killed on game tick [0] due to [unused player] +(I) [19:41:08.500] [000009120]: Player [1006] killed on game tick [0] due to [unused player] +(I) [19:41:08.500] [000009120]: Player [1007] killed on game tick [0] due to [unused player] +(I) [19:41:08.500] [000009120]: Player [1008] killed on game tick [0] due to [unused player] +(I) [19:41:08.500] [000009120]: Player [1009] killed on game tick [0] due to [unused player] +(I) [19:41:08.500] [000009120]: Player [1010] killed on game tick [0] due to [unused player] +(I) [19:41:08.500] [000009120]: Player [1011] killed on game tick [0] due to [unused player] +(I) [19:41:08.500] [000009120]: Player [1012] killed on game tick [0] due to [unused player] +(I) [19:41:08.500] [000009120]: Player [1013] killed on game tick [0] due to [unused player] +(I) [19:41:08.500] [000009120]: Player [1014] killed on game tick [0] due to [unused player] +(I) [19:41:08.500] [000009120]: Player [1015] killed on game tick [0] due to [unused player] +(I) [19:41:08.813] [000009120]: Loading step: [GameUICore System] +(I) [19:41:08.922] [000009120]: Loading step: [Team Colour Init] +(I) [19:41:08.922] [000009120]: Loading step: [UI System] +(I) [19:41:08.923] [000009120]: Loading step: [LUA] +(I) [19:41:08.923] [000009120]: Loading step: [Game Event Listener Registration] +(I) [19:41:08.923] [000009120]: Loading step: [CPU AI] +(I) [19:41:08.926] [000004748]: Registered essence thread: [AI_Thread] usesRcssWorkerThreads: [true] +(I) [19:41:08.993] [000009120]: Loading step: [Scar Init] +(I) [19:41:08.993] [000009120]: Loading step: [FX System] +(I) [19:41:08.993] [000009120]: Loading step: [Cheat Menu] +(I) [19:41:08.997] [000009120]: Loading step: [Scar Start] +(I) [19:41:08.999] [000009120]: Loading step: [Load resources] +(I) [19:41:09.005] [000009120]: Loading step: [PreDisplay] +(I) [19:41:09.005] [000009120]: Loading step: [Free Loading Data] +(I) [19:41:09.005] [000009120]: PreloadResources took 0ms. +(I) [19:41:09.005] [000009120]: Loading step: [MemShrink] +(I) [19:41:09.005] [000009120]: Loading step: [Flush Inventory] +(I) [19:41:09.009] [000009120]: Loading step: [Resolve Impasse Blockers] +(I) [19:41:09.009] [000009120]: Loading step: [Content Access Setup] +(I) [19:41:09.009] [000009120]: Loading step: [Convert OOB Static Entities to Visual Only Objects] +(I) [19:41:09.009] [000009120]: Loading step: [DefaultWorld Begin Play] +(I) [19:41:09.036] [000009120]: Loading step: [Preparing game] +(I) [19:41:09.036] [000009120]: Loading step: [Start Renderer] +(I) [19:41:09.036] [000009120]: Loading step: [FrontEnd simulation initialization] +(I) [19:41:09.036] [000009120]: Loading step: [WPFGFrontEnd loading] +(I) [19:41:09.038] [000009120]: Loading step: [OnEndLoad] +(I) [19:41:09.842] [000010680]: LoadArbitrator::UpdateLoadProgress - info, player "[0:1]" finished loading with checksum [4153774063]. +(E) [19:41:10.331] [000010680]: TelemetryRow::addString : Key: (match_settings), Value length (359) is larger than Column length (256) +(E) [19:41:10.331] [000010680]: TelemetryRow::addString : Key: (match_settings), Value length (359) is larger than Column length (256) +(I) [19:41:10.332] [000010680]: PerformanceRecorder::StartRecording for game size 2 +(I) [19:41:10.332] [000010680]: GAME -- Starting mission: data:scenarios\multiplayer\desert_village_2p_mkiii\desert_village_2p_mkiii +(I) [19:41:10.332] [000010680]: MEM -- available page 15091 mb, total page 44974 mb +(I) [19:41:10.348] [000010680]: GameApp::SetState : new (Game) old (LoadingGame) +(I) [19:41:10.348] [000010680]: GameApp::SetTargetState : new (Uninitialized) old (Game) +(I) [19:41:13.841] [000010680]: MOD -- Player IA normale set to AI Type: AI Player (frame 17) (CmdAI) +(I) [19:41:16.636] [000015544]: Read bytes [0,"PresenceMessage",16432,[[12027,16432,"/steam/76561198005864560","","UMirinBrah?","",11893,11551,11551,2074389,null,"76561198005864560",3,[],1526767,"Dans l'accueil de la partie personnalisée",[[1409823,"17367150"]]]]] +(I) [19:41:19.004] [000010680]: Local user framerate is [0.000000] +(I) [19:41:19.004] [000010680]: Local user MinDelay=[1ms], MaxDelay=[1277ms], AvgDelay=[766ms], minRTT[44ms], maxRTT[163ms], avgRTT[101ms] +(I) [19:41:27.769] [000015544]: Read bytes [0,"PresenceMessage",16432,[[12028,16432,"/steam/76561198005864560","","UMirinBrah?","",11893,11551,11551,2074389,null,"76561198005864560",3,[],1409815,"En jeu",[[1409823,"17367150"]]]]] +(I) [19:41:40.001] [000010680]: Local user framerate is [146.570679] +(I) [19:41:40.001] [000010680]: Local user MinDelay=[1ms], MaxDelay=[1277ms], AvgDelay=[317ms], minRTT[34ms], maxRTT[163ms], avgRTT[108ms] +(I) [19:41:46.009] [000002600]: MessageCounts: inval=0/0, seek=0/0, join=0/2, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/2, Pdel=0/0, drop=0/0, data=165/34, mdat=284/568, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=16/38, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=16/18, lb_p=9/4, lb_c=0/1, cast=0/0, cdat=131/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=1/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [19:42:01.003] [000010680]: Local user framerate is [178.573212] +(I) [19:42:01.003] [000010680]: Local user MinDelay=[1ms], MaxDelay=[1277ms], AvgDelay=[229ms], minRTT[34ms], maxRTT[163ms], avgRTT[115ms] +(I) [19:42:11.949] [000019272]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [None] +(I) [19:42:11.960] [000019272]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [None] +(I) [19:42:11.960] [000019272]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [19:42:22.000] [000010680]: Local user framerate is [190.300003] +(I) [19:42:22.000] [000010680]: Local user MinDelay=[16ms], MaxDelay=[215ms], AvgDelay=[114ms], minRTT[76ms], maxRTT[136ms], avgRTT[115ms] +(I) [19:42:43.002] [000010680]: Local user framerate is [204.489761] +(I) [19:42:43.002] [000010680]: Local user MinDelay=[16ms], MaxDelay=[215ms], AvgDelay=[112ms], minRTT[76ms], maxRTT[140ms], avgRTT[122ms] +(I) [19:42:47.000] [000002600]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=125/0, mdat=488/976, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=6/4, lb_c=0/0, cast=0/0, cdat=118/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [19:42:47.734] [000019272]: RENDERING - new resize requested [2560, 1440] reason [WindowSizeEvent] +(I) [19:42:47.735] [000019272]: RENDERING - Starting compositor fullscreen transition [1] +(I) [19:42:47.735] [000019272]: RENDERING - Setting Fullscreen On +(I) [19:42:47.834] [000019272]: RENDERING - state Size [2560 x 1440], fullscreen size[2560 x 1440] +(I) [19:42:47.836] [000019272]: RENDERING - Finished compositor fullscreen transition [1] +(I) [19:42:47.836] [000019272]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [19:42:47.838] [000019272]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [19:42:47.838] [000019272]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [19:42:47.862] [000019272]: RENDERING - new resize requested [2578, 1487] reason [WindowSizeEvent] +(I) [19:42:47.862] [000019272]: RENDERING - resize request clobbering old request [2578, 1487] reason [WindowSizeEvent] +(I) [19:42:47.862] [000019272]: RENDERING - new resize requested [2560, 1440] reason [WindowSizeEvent] +(I) [19:42:47.862] [000019272]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [19:42:47.870] [000019272]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [19:42:47.870] [000019272]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [19:43:04.002] [000010680]: Local user framerate is [202.889847] +(I) [19:43:04.002] [000010680]: Local user MinDelay=[1ms], MaxDelay=[215ms], AvgDelay=[108ms], minRTT[50ms], maxRTT[146ms], avgRTT[126ms] +(I) [19:43:25.000] [000010680]: Local user framerate is [171.224319] +(I) [19:43:25.000] [000010680]: Local user MinDelay=[88ms], MaxDelay=[111ms], AvgDelay=[101ms], minRTT[39ms], maxRTT[150ms], avgRTT[119ms] +(I) [19:43:46.010] [000010680]: Local user framerate is [178.223267] +(I) [19:43:46.010] [000010680]: Local user MinDelay=[72ms], MaxDelay=[114ms], AvgDelay=[100ms], minRTT[34ms], maxRTT[161ms], avgRTT[122ms] +(I) [19:43:48.000] [000002600]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=191/0, mdat=488/976, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=6/4, lb_c=0/0, cast=0/0, cdat=169/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [19:43:49.600] [000019272]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [None] +(I) [19:43:49.611] [000019272]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [None] +(I) [19:43:49.611] [000019272]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [19:44:07.010] [000010680]: Local user framerate is [181.050003] +(I) [19:44:07.010] [000010680]: Local user MinDelay=[2ms], MaxDelay=[114ms], AvgDelay=[99ms], minRTT[34ms], maxRTT[161ms], avgRTT[124ms] +(I) [19:44:28.009] [000010680]: Local user framerate is [197.699997] +(I) [19:44:28.009] [000010680]: Local user MinDelay=[84ms], MaxDelay=[108ms], AvgDelay=[98ms], minRTT[109ms], maxRTT[149ms], avgRTT[135ms] +(I) [19:44:49.001] [000002600]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=130/0, mdat=488/976, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=6/4, lb_c=0/0, cast=0/0, cdat=123/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [19:44:49.010] [000010680]: Local user framerate is [199.020142] +(I) [19:44:49.010] [000010680]: Local user MinDelay=[84ms], MaxDelay=[109ms], AvgDelay=[99ms], minRTT[109ms], maxRTT[149ms], avgRTT[134ms] +(I) [19:44:56.414] [000019272]: RENDERING - new resize requested [2560, 1440] reason [WindowSizeEvent] +(I) [19:44:56.414] [000019272]: RENDERING - Starting compositor fullscreen transition [1] +(I) [19:44:56.414] [000019272]: RENDERING - Setting Fullscreen On +(I) [19:44:56.514] [000019272]: RENDERING - state Size [2560 x 1440], fullscreen size[2560 x 1440] +(I) [19:44:56.516] [000019272]: RENDERING - Finished compositor fullscreen transition [1] +(I) [19:44:56.516] [000019272]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [19:44:56.519] [000019272]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [19:44:56.519] [000019272]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [19:44:56.542] [000019272]: RENDERING - new resize requested [2578, 1487] reason [WindowSizeEvent] +(I) [19:44:56.542] [000019272]: RENDERING - resize request clobbering old request [2578, 1487] reason [WindowSizeEvent] +(I) [19:44:56.542] [000019272]: RENDERING - new resize requested [2560, 1440] reason [WindowSizeEvent] +(I) [19:44:56.542] [000019272]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [19:44:56.551] [000019272]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [19:44:56.551] [000019272]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [19:45:10.002] [000010680]: Local user framerate is [192.011581] +(I) [19:45:10.002] [000010680]: Local user MinDelay=[16ms], MaxDelay=[203ms], AvgDelay=[101ms], minRTT[50ms], maxRTT[171ms], avgRTT[129ms] +(I) [19:45:31.011] [000010680]: Local user framerate is [164.741745] +(I) [19:45:31.011] [000010680]: Local user MinDelay=[93ms], MaxDelay=[116ms], AvgDelay=[104ms], minRTT[43ms], maxRTT[151ms], avgRTT[124ms] +(I) [19:45:50.000] [000002600]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=182/0, mdat=488/976, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=6/4, lb_c=0/0, cast=0/0, cdat=158/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [19:45:52.013] [000010680]: Local user framerate is [147.820419] +(I) [19:45:52.013] [000010680]: Local user MinDelay=[78ms], MaxDelay=[116ms], AvgDelay=[102ms], minRTT[37ms], maxRTT[151ms], avgRTT[120ms] +(I) [19:46:02.145] [000019272]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [None] +(I) [19:46:02.160] [000019272]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [None] +(I) [19:46:02.160] [000019272]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [19:46:13.000] [000010680]: Local user framerate is [173.600006] +(I) [19:46:13.000] [000010680]: Local user MinDelay=[102ms], MaxDelay=[120ms], AvgDelay=[109ms], minRTT[109ms], maxRTT[131ms], avgRTT[124ms] +(I) [19:46:32.608] [000019272]: RENDERING - new resize requested [2560, 1440] reason [WindowSizeEvent] +(I) [19:46:32.609] [000019272]: RENDERING - Starting compositor fullscreen transition [1] +(I) [19:46:32.609] [000019272]: RENDERING - Setting Fullscreen On +(I) [19:46:32.707] [000019272]: RENDERING - state Size [2560 x 1440], fullscreen size[2560 x 1440] +(I) [19:46:32.709] [000019272]: RENDERING - Finished compositor fullscreen transition [1] +(I) [19:46:32.709] [000019272]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [19:46:32.712] [000019272]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [19:46:32.712] [000019272]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [19:46:32.736] [000019272]: RENDERING - new resize requested [2578, 1487] reason [WindowSizeEvent] +(I) [19:46:32.736] [000019272]: RENDERING - resize request clobbering old request [2578, 1487] reason [WindowSizeEvent] +(I) [19:46:32.736] [000019272]: RENDERING - new resize requested [2560, 1440] reason [WindowSizeEvent] +(I) [19:46:32.736] [000019272]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [19:46:32.745] [000019272]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [19:46:32.745] [000019272]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [19:46:34.004] [000010680]: Local user framerate is [185.940689] +(I) [19:46:34.004] [000010680]: Local user MinDelay=[32ms], MaxDelay=[214ms], AvgDelay=[110ms], minRTT[62ms], maxRTT[144ms], avgRTT[120ms] +(I) [19:46:51.001] [000002600]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=186/0, mdat=488/976, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=6/4, lb_c=0/0, cast=0/0, cdat=164/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [19:46:55.005] [000010680]: Local user framerate is [165.100006] +(I) [19:46:55.005] [000010680]: Local user MinDelay=[8ms], MaxDelay=[214ms], AvgDelay=[103ms], minRTT[54ms], maxRTT[157ms], avgRTT[128ms] +(I) [19:47:16.004] [000010680]: Local user framerate is [180.731918] +(I) [19:47:16.004] [000010680]: Local user MinDelay=[89ms], MaxDelay=[105ms], AvgDelay=[96ms], minRTT[131ms], maxRTT[148ms], avgRTT[140ms] +(I) [19:47:37.007] [000010680]: Local user framerate is [186.375443] +(I) [19:47:37.007] [000010680]: Local user MinDelay=[84ms], MaxDelay=[106ms], AvgDelay=[96ms], minRTT[120ms], maxRTT[150ms], avgRTT[138ms] +(I) [19:47:52.006] [000002600]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=159/0, mdat=488/976, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=6/4, lb_c=0/0, cast=0/0, cdat=143/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [19:47:58.036] [000010680]: Local user framerate is [181.390915] +(I) [19:47:58.036] [000010680]: Local user MinDelay=[84ms], MaxDelay=[106ms], AvgDelay=[96ms], minRTT[36ms], maxRTT[159ms], avgRTT[132ms] +(I) [19:48:19.021] [000010680]: Local user framerate is [169.566071] +(I) [19:48:19.021] [000010680]: Local user MinDelay=[60ms], MaxDelay=[105ms], AvgDelay=[97ms], minRTT[35ms], maxRTT[154ms], avgRTT[118ms] +(I) [19:48:40.009] [000010680]: Local user framerate is [137.701797] +(I) [19:48:40.009] [000010680]: Local user MinDelay=[60ms], MaxDelay=[151ms], AvgDelay=[96ms], minRTT[35ms], maxRTT[164ms], avgRTT[121ms] +(I) [19:48:53.000] [000002600]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=296/0, mdat=488/976, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=6/4, lb_c=0/0, cast=0/0, cdat=253/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [19:49:01.008] [000010680]: Local user framerate is [113.644310] +(I) [19:49:01.008] [000010680]: Local user MinDelay=[60ms], MaxDelay=[151ms], AvgDelay=[95ms], minRTT[35ms], maxRTT[165ms], avgRTT[121ms] +(I) [19:49:10.917] [000019272]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [None] +(I) [19:49:10.933] [000019272]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [None] +(I) [19:49:10.933] [000019272]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [19:49:20.910] [000019272]: RENDERING - new resize requested [2560, 1440] reason [WindowSizeEvent] +(I) [19:49:20.910] [000019272]: RENDERING - Starting compositor fullscreen transition [1] +(I) [19:49:20.910] [000019272]: RENDERING - Setting Fullscreen On +(I) [19:49:21.011] [000019272]: RENDERING - state Size [2560 x 1440], fullscreen size[2560 x 1440] +(I) [19:49:21.013] [000019272]: RENDERING - Finished compositor fullscreen transition [1] +(I) [19:49:21.013] [000019272]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [19:49:21.016] [000019272]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [19:49:21.016] [000019272]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [19:49:21.072] [000019272]: RENDERING - new resize requested [2578, 1487] reason [WindowSizeEvent] +(I) [19:49:21.072] [000019272]: RENDERING - resize request clobbering old request [2578, 1487] reason [WindowSizeEvent] +(I) [19:49:21.072] [000019272]: RENDERING - new resize requested [2560, 1440] reason [WindowSizeEvent] +(I) [19:49:21.072] [000019272]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [19:49:21.087] [000019272]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [19:49:21.087] [000019272]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [19:49:22.001] [000010680]: Local user framerate is [107.750000] +(I) [19:49:22.001] [000010680]: Local user MinDelay=[1ms], MaxDelay=[184ms], AvgDelay=[81ms], minRTT[33ms], maxRTT[162ms], avgRTT[126ms] +(I) [19:49:43.005] [000010680]: Local user framerate is [111.500000] +(I) [19:49:43.005] [000010680]: Local user MinDelay=[1ms], MaxDelay=[184ms], AvgDelay=[77ms], minRTT[33ms], maxRTT[164ms], avgRTT[128ms] +(I) [19:49:54.002] [000002600]: MessageCounts: inval=0/0, seek=0/0, join=0/0, ichk=0/0, sk_r=0/0, deny=0/0, Padd=0/0, Pdel=0/0, drop=0/0, data=203/0, mdat=488/976, voip=0/0, rchk=0/0, nudg=0/0, Thdr=0/0, Peer=0/0, PPrx=0/0, ping=0/0, Pfrg=0/0, rely=0/0, lb_p=6/4, lb_c=0/0, cast=0/0, cdat=179/0, sorq1=0/0, sorp=0/0, acto=0/0, spob=0/0, sorq2=0/0, setp=0/0, actr=0/0, lsim=0/0, rlbc=0/0, rlbc2=0/0, endg=0/0 +(I) [19:50:04.004] [000010680]: Local user framerate is [111.077774] +(I) [19:50:04.004] [000010680]: Local user MinDelay=[1ms], MaxDelay=[184ms], AvgDelay=[78ms], minRTT[33ms], maxRTT[187ms], avgRTT[130ms] +(I) [19:50:10.605] [000019272]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [None] +(I) [19:50:10.620] [000019272]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [None] +(I) [19:50:10.620] [000019272]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [19:50:25.000] [000010680]: Local user framerate is [108.117561] +(I) [19:50:25.000] [000010680]: Local user MinDelay=[23ms], MaxDelay=[180ms], AvgDelay=[111ms], minRTT[87ms], maxRTT[160ms], avgRTT[122ms] +(I) [19:50:28.178] [000019272]: RENDERING - new resize requested [2560, 1440] reason [WindowSizeEvent] +(I) [19:50:28.178] [000019272]: RENDERING - Starting compositor fullscreen transition [1] +(I) [19:50:28.179] [000019272]: RENDERING - Setting Fullscreen On +(I) [19:50:28.279] [000019272]: RENDERING - state Size [2560 x 1440], fullscreen size[2560 x 1440] +(I) [19:50:28.281] [000019272]: RENDERING - Finished compositor fullscreen transition [1] +(I) [19:50:28.281] [000019272]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [19:50:28.284] [000019272]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [19:50:28.284] [000019272]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [19:50:28.340] [000019272]: RENDERING - new resize requested [2578, 1487] reason [WindowSizeEvent] +(I) [19:50:28.340] [000019272]: RENDERING - resize request clobbering old request [2578, 1487] reason [WindowSizeEvent] +(I) [19:50:28.340] [000019272]: RENDERING - new resize requested [2560, 1440] reason [WindowSizeEvent] +(I) [19:50:28.341] [000019272]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [19:50:28.360] [000019272]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [19:50:28.360] [000019272]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [19:50:38.341] [000010680]: Player [1001] killed on game tick [4542] due to [loss] +(I) [19:50:38.362] [000010680]: REC -- Validating replay [playback:temp.rec]... +(I) [19:50:38.362] [000010680]: REC -- Invalid version [19658]! current build is [21751] +(I) [19:50:38.362] [000010680]: GAME -- Replay playback:temp.rec is invalid, it is included but marked as disabled, reason: 3 +(I) [19:50:38.367] [000010680]: REC -- Validating replay [playback:temp_04_01_2024__23_37.rec]... +(I) [19:50:38.382] [000010680]: REC -- Validating replay [playback:temp_05_01_2024__14_29.rec]... +(I) [19:50:38.405] [000010680]: REC -- Validating replay [playback:temp_05_01_2024__17_24.rec]... +(I) [19:50:38.436] [000010680]: REC -- Validating replay [playback:temp_05_01_2024__17_42.rec]... +(I) [19:50:38.461] [000010680]: REC -- Validating replay [playback:temp_05_01_2024__18_07.rec]... +(I) [19:50:38.484] [000010680]: REC -- Validating replay [playback:temp_05_01_2024__18_29.rec]... +(I) [19:50:38.502] [000010680]: REC -- Validating replay [playback:temp_05_01_2024__18_41.rec]... +(I) [19:50:38.521] [000010680]: REC -- Validating replay [playback:temp_06_01_2024__14_31.rec]... +(I) [19:50:38.539] [000010680]: REC -- Validating replay [playback:temp_06_01_2024__14_53.rec]... +(I) [19:50:38.564] [000010680]: REC -- Validating replay [playback:temp_06_01_2024__15_12.rec]... +(I) [19:50:38.578] [000010680]: REC -- Validating replay [playback:temp_07_01_2024__19_41.rec]... +(I) [19:50:38.592] [000010680]: REC -- Validating replay [playback:temp_campaign.rec]... +(I) [19:50:38.617] [000010680]: REC -- Validating replay [playback:temp_mod.rec]... +(I) [19:50:38.617] [000010680]: REC -- Invalid version [62368]! current build is [21751] +(I) [19:50:38.617] [000010680]: GAME -- Replay playback:temp_mod.rec is invalid, it is included but marked as disabled, reason: 3 +(I) [19:50:38.620] [000010680]: GAME -- Frame 4542 - SimKillPlayer - Destroying SimPlayer 1001, reason 3 +(I) [19:50:38.620] [000010680]: Report sent for profileID[16432] -> race=[129494], result=[3], XP Gain=[1818] +(I) [19:50:38.670] [000010680]: ReportResultsAsync: skipping because the result is not the final match result +(I) [19:50:38.710] [000008804]: REC -- Validating replay [playback:temp.rec]... +(I) [19:50:38.710] [000008804]: REC -- Invalid version [19658]! current build is [21751] +(I) [19:50:38.710] [000008804]: GAME -- Replay playback:temp.rec is invalid, it is included but marked as disabled, reason: 3 +(I) [19:50:38.710] [000008804]: REC -- Validating replay [playback:temp_05_01_2024__14_29.rec]... +(I) [19:50:38.723] [000008804]: REC -- Validating replay [playback:temp_05_01_2024__17_24.rec]... +(I) [19:50:38.744] [000008804]: REC -- Validating replay [playback:temp_05_01_2024__17_42.rec]... +(I) [19:50:38.764] [000008804]: REC -- Validating replay [playback:temp_05_01_2024__18_07.rec]... +(I) [19:50:38.778] [000008804]: REC -- Validating replay [playback:temp_05_01_2024__18_29.rec]... +(I) [19:50:38.791] [000008804]: REC -- Validating replay [playback:temp_05_01_2024__18_41.rec]... +(I) [19:50:38.803] [000008804]: REC -- Validating replay [playback:temp_06_01_2024__14_31.rec]... +(I) [19:50:38.816] [000008804]: REC -- Validating replay [playback:temp_06_01_2024__14_53.rec]... +(I) [19:50:38.836] [000008804]: REC -- Validating replay [playback:temp_06_01_2024__15_12.rec]... +(I) [19:50:38.850] [000008804]: REC -- Validating replay [playback:temp_07_01_2024__19_41.rec]... +(I) [19:50:38.861] [000008804]: REC -- Validating replay [playback:temp_campaign.rec]... +(I) [19:50:38.881] [000008804]: REC -- Validating replay [playback:temp_mod.rec]... +(I) [19:50:38.881] [000008804]: REC -- Invalid version [62368]! current build is [21751] +(I) [19:50:38.881] [000008804]: GAME -- Replay playback:temp_mod.rec is invalid, it is included but marked as disabled, reason: 3 +(I) [19:50:39.131] [000008804]: REC -- Validating replay [playback:temp.rec]... +(I) [19:50:39.131] [000008804]: REC -- Invalid version [19658]! current build is [21751] +(I) [19:50:39.131] [000008804]: GAME -- Replay playback:temp.rec is invalid, it is included but marked as disabled, reason: 3 +(I) [19:50:39.131] [000008804]: REC -- Validating replay [playback:temp_05_01_2024__14_29.rec]... +(I) [19:50:39.144] [000008804]: REC -- Validating replay [playback:temp_05_01_2024__17_24.rec]... +(I) [19:50:39.164] [000008804]: REC -- Validating replay [playback:temp_05_01_2024__17_42.rec]... +(I) [19:50:39.185] [000008804]: REC -- Validating replay [playback:temp_05_01_2024__18_07.rec]... +(I) [19:50:39.199] [000008804]: REC -- Validating replay [playback:temp_05_01_2024__18_29.rec]... +(I) [19:50:39.212] [000008804]: REC -- Validating replay [playback:temp_05_01_2024__18_41.rec]... +(I) [19:50:39.224] [000008804]: REC -- Validating replay [playback:temp_06_01_2024__14_31.rec]... +(I) [19:50:39.237] [000008804]: REC -- Validating replay [playback:temp_06_01_2024__14_53.rec]... +(I) [19:50:39.257] [000008804]: REC -- Validating replay [playback:temp_06_01_2024__15_12.rec]... +(I) [19:50:39.271] [000008804]: REC -- Validating replay [playback:temp_07_01_2024__19_41.rec]... +(I) [19:50:39.282] [000008804]: REC -- Validating replay [playback:temp_campaign.rec]... +(I) [19:50:39.302] [000008804]: REC -- Validating replay [playback:temp_mod.rec]... +(I) [19:50:39.302] [000008804]: REC -- Invalid version [62368]! current build is [21751] +(I) [19:50:39.302] [000008804]: GAME -- Replay playback:temp_mod.rec is invalid, it is included but marked as disabled, reason: 3 +(I) [19:50:39.432] [000010680]: MPMatchSetup::OnMatchEvent - MET_ReportResults - result [0] +(I) [19:50:39.432] [000010680]: GameObjController - OnMatchEvent: event type 9 +(I) [19:50:40.271] [000010680]: GameApp::SetTargetState : new (UnloadedGame) old (Uninitialized) +(I) [19:50:40.280] [000010680]: GameApp::SetState : new (UnloadingGame) old (Game) +(I) [19:50:41.354] [000010680]: GameObj::ShutdownGameObj +(I) [19:50:41.354] [000010680]: GetMaxFrameTimeFromProfile: players=2 expected FPS=100.000000, bars=0, max avg=0.000, sd=0.000, 0 samples = +(I) [19:50:41.354] [000010680]: PerformanceRecorder::EndRecording - game size=2, max average=0.009281, worst frame=0.010000 +(I) [19:50:41.354] [000010680]: Recording: No [2 players] + +(I) [19:50:41.354] [000010680]: Max/Avg: 0.01, 0.01 sec (fps=107.75, 163.27) (28 samples) + +(I) [19:50:41.354] [000010680]: Bars: 0 + +(I) [19:50:41.354] [000010680]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_seconds_played] +(I) [19:50:41.354] [000010680]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_units_produced] +(I) [19:50:41.355] [000010680]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_units_killed] +(I) [19:50:41.355] [000010680]: GameObj -- RLink::NetworkManager::Get()->GetAchievementInterface().DeltaPlatformStat() failed. statName[mp_units_lost] +(I) [19:50:41.367] [000010680]: StatArtWarningsCount 0 +(I) [19:50:41.367] [000010680]: StatDataWarningsCount 0 +(I) [19:50:41.668] [000010680]: GameApp::SetState : new (UnloadedGame) old (UnloadingGame) +(I) [19:50:41.668] [000010680]: GameApp::SetTargetState : new (Uninitialized) old (UnloadedGame) +(I) [19:50:41.688] [000010680]: SessionID : 109006e - Disconnect called with reasonID 1000 - MatchSetup::Disconnect +(I) [19:50:41.688] [000010680]: MatchSetupManager: Removed queued match [desert_village_2p_mkiii] Queue is now [0] +(I) [19:50:41.688] [000010680]: SessionID : 109006e - Disconnect called with reasonID 1000 - MatchSetup::Disconnect +(I) [19:50:41.700] [000010680]: Disconnect process already running +(E) [19:50:41.714] [000010680]: SetVisible called while !IsConnected +(I) [19:50:41.853] [000010680]: Movie Manager -- No movies with locale [fr] exist on disk. Switching to fallback locale [en]. +(I) [19:50:41.918] [000010680]: Movie Manager -- No movies with locale [fr] exist on disk. Switching to fallback locale [en]. +(I) [19:50:44.898] [000010680]: GetPartyStatsByID found 1 teams for user ID 16432 +(I) [19:50:48.281] [000010680]: WorldwideAdvertisementService::Process - EVENT_DESTROYPEER +(I) [19:50:48.281] [000010680]: WorldwidePartyService::PeerRemove, Removing peer ID: 1 +(I) [19:50:48.281] [000010680]: peerremove - peerIDRemoved=16432, reasonID=1000, reason debug hint - MatchSetup::Disconnect +(E) [19:50:48.284] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.295] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.306] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.317] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.328] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.338] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.349] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.360] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.371] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.382] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.393] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.404] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.415] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.426] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.437] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.448] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.459] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.470] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.481] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.492] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.503] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.514] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.525] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.536] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.547] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.558] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.569] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.580] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.591] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.602] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.613] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.624] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.635] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.646] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.657] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.668] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(E) [19:50:48.679] [000002600]: Session::SendQueuedMessagesToRelay local peer is missing, not sending +(I) [19:50:48.681] [000010680]: PeerRemoveAll - flushing local session peer data +(I) [19:50:48.681] [000010680]: LeaveSessionInternal - no action taken, needLeave=0, service=0 +(I) [19:50:48.681] [000010680]: Destroyed Matchinfo for sessionID 17367150 +(E) [19:50:48.681] [000010680]: Socks::Free: Socket 0/5360 did not close properly before being freed. +(I) [19:50:48.681] [000010680]: OnDestroyPartyNotification - partyID = 17367150, prevID = -1 +(I) [19:50:48.681] [000010680]: OnDestroyPartyNotification - partyID = 17367150, prevID = -1 +(I) [19:50:49.117] [000015544]: Read bytes [0,"PresenceMessage",16432,[[12029,16432,"/steam/76561198005864560","","UMirinBrah?","",11893,11551,11551,2074389,null,"76561198005864560",3,[],1526767,"Dans l'accueil de la partie personnalisée",[[1409823,"17367150"]]]]] +(I) [19:50:52.376] [000019272]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [None] +(I) [19:50:52.390] [000019272]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [None] +(I) [19:50:52.390] [000019272]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [19:50:55.858] [000015544]: Read bytes [0,"PresenceMessage",16432,[[12030,16432,"/steam/76561198005864560","","UMirinBrah?","",11893,11551,11551,2074389,null,"76561198005864560",3,[],2,"En ligne",[[1409823,"17367150"]]]]] +(I) [19:54:44.263] [000019272]: RENDERING - new resize requested [2560, 1440] reason [WindowSizeEvent] +(I) [19:54:44.263] [000019272]: RENDERING - Starting compositor fullscreen transition [1] +(I) [19:54:44.263] [000019272]: RENDERING - Setting Fullscreen On +(I) [19:54:44.370] [000019272]: RENDERING - state Size [2560 x 1440], fullscreen size[2560 x 1440] +(I) [19:54:44.372] [000019272]: RENDERING - Finished compositor fullscreen transition [1] +(I) [19:54:44.372] [000019272]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [19:54:44.375] [000019272]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [19:54:44.375] [000019272]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [19:54:44.437] [000019272]: RENDERING - new resize requested [2578, 1487] reason [WindowSizeEvent] +(I) [19:54:44.437] [000019272]: RENDERING - resize request clobbering old request [2578, 1487] reason [WindowSizeEvent] +(I) [19:54:44.437] [000019272]: RENDERING - new resize requested [2560, 1440] reason [WindowSizeEvent] +(I) [19:54:44.438] [000019272]: RENDERING - Starting compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [19:54:44.449] [000019272]: RENDERING - Finished compositor resize to [2560 x 1440] for reason [WindowSizeEvent] +(I) [19:54:44.449] [000019272]: RENDERING - Trigger Rebuilding Rendering Pipeline +(I) [19:54:47.258] [000010680]: GameApp::SetTargetState : new (Quit) old (Uninitialized) +(I) [19:54:47.261] [000010680]: GameApp::SetState : new (FrontEnd) old (UnloadedGame) +(I) [19:54:47.346] [000010680]: GameApp::SetState : new (Unloaded) old (FrontEnd) +(I) [19:54:47.415] [000010680]: GameApp::SetState : new (Quit) old (Unloaded) +(I) [19:54:47.754] [000010680]: WWise Terminating +(I) [19:54:47.755] [000010680]: Terminating SoundEngine +(I) [19:54:47.799] [000010680]: Terminating Streaming Manager +(I) [19:54:47.800] [000010680]: Terminating Memory Manager +(I) [19:54:47.895] [000019272]: Unregistered essence thread: [Render_Thread] +(I) [19:54:49.412] [000006648]: Unregistered essence thread: [Simulation_Thread] +(I) [19:54:49.578] [000010680]: RPC -- Stopping RpcServer +(I) [19:54:49.578] [000004748]: Unregistered essence thread: [AI_Thread] +(I) [19:54:49.582] [000010680]: call to FlushJobs +(I) [19:54:50.556] [000010680]: call to FlushJobs +(I) [19:54:51.926] [000010680]: Beginning call to ~NetworkManagerInternal +(I) [19:54:51.926] [000010680]: ~NetworkManagerInternal is about to join threads +(I) [19:54:51.975] [000010680]: We have reached the end of ~NetworkManagerInternal +(E) [19:54:51.975] [000010680]: Socks::Free: Socket 0/1732 did not close properly before being freed. +(E) [19:54:51.975] [000010680]: Socks::Free: Socket 0/4748 did not close properly before being freed. +(I) [19:54:51.978] [000010680]: Automatch2Internal: Fade to black +(I) [19:54:51.978] [000010680]: AutomatchInternal: Fade to black +(I) [19:54:52.356] [000010680]: NOTIFIER -- Notification terminated for directory c:\users\cutil\documents\my games\company of heroes 3\playback\ - HANDLE: 0000000000000644 - after 0 milliseconds +(I) [19:54:52.357] [000010680]: FILESYSTEM -- filepath failed to remove alias, missing alias 'stats' +(I) [19:54:52.358] [000010680]: Unregistered essence thread: [Main_Thread] +(I) [19:54:52.360] [000010680]: Threading system shutdown + +Application closed without errors